Deleted Added
full compact
Parser.h (208954) Parser.h (234353)
1//===-- llvm/Assembly/Parser.h - Parser for VM assembly files ---*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 7 unchanged lines hidden (view full) ---

16
17#include <string>
18
19namespace llvm {
20
21class Module;
22class MemoryBuffer;
23class SMDiagnostic;
1//===-- llvm/Assembly/Parser.h - Parser for VM assembly files ---*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 7 unchanged lines hidden (view full) ---

16
17#include <string>
18
19namespace llvm {
20
21class Module;
22class MemoryBuffer;
23class SMDiagnostic;
24class raw_ostream;
25class LLVMContext;
26
27/// This function is the main interface to the LLVM Assembly Parser. It parses
28/// an ASCII file that (presumably) contains LLVM Assembly code. It returns a
29/// Module (intermediate representation) with the corresponding features. Note
30/// that this does not verify that the generated Module is valid, so you should
31/// run the verifier after parsing the file to check that it is okay.
32/// @brief Parse LLVM Assembly from a file

--- 33 unchanged lines hidden ---
24class LLVMContext;
25
26/// This function is the main interface to the LLVM Assembly Parser. It parses
27/// an ASCII file that (presumably) contains LLVM Assembly code. It returns a
28/// Module (intermediate representation) with the corresponding features. Note
29/// that this does not verify that the generated Module is valid, so you should
30/// run the verifier after parsing the file to check that it is okay.
31/// @brief Parse LLVM Assembly from a file

--- 33 unchanged lines hidden ---