diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-30 22:51:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-30 22:51:21 +0000 |
commit | 917914885d373ac68a9e1cdd80b21a49f0370c49 (patch) | |
tree | 840b10667d6e4caffc993c91bcf3332f2a7a61f0 /include | |
parent | 70433de019a79f4dcb090bdc6ecb5b1ab8c0b5a5 (diff) | |
download | external_llvm-917914885d373ac68a9e1cdd80b21a49f0370c49.zip external_llvm-917914885d373ac68a9e1cdd80b21a49f0370c49.tar.gz external_llvm-917914885d373ac68a9e1cdd80b21a49f0370c49.tar.bz2 |
Update comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3547 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Assembly/Parser.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/llvm/Assembly/Parser.h b/include/llvm/Assembly/Parser.h index 02e5d4f..b54617a 100644 --- a/include/llvm/Assembly/Parser.h +++ b/include/llvm/Assembly/Parser.h @@ -1,6 +1,6 @@ -//===-- llvm/assembly/Parser.h - Parser for VM assembly files ----*- C++ -*--=// +//===-- llvm/Assembly/Parser.h - Parser for VM assembly files ----*- C++ -*--=// // -// These classes are implemented by the lib/AssemblyParser library. +// These classes are implemented by the lib/AsmParser library. // //===----------------------------------------------------------------------===// @@ -14,7 +14,9 @@ class ParseException; // The useful interface defined by this file... Parse an ascii file, and return -// the internal representation in a nice slice'n'dice'able representation. +// the internal representation in a nice slice'n'dice'able representation. Note +// that this does not verify that the generated LLVM is valid, so you should run +// the verifier after parsing the file to check that it's ok. // Module *ParseAssemblyFile(const std::string &Filename);// throw (ParseException) |