diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-07-14 22:49:40 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-07-14 22:49:40 +0000 |
commit | 9f835b82fca7d703dfe34bae65aac213e2490108 (patch) | |
tree | 52609373a994f70d6561b9d0945244526dc662e6 /llvm/lib/AsmParser/ParserInternals.h | |
parent | 249f9ad3dc34dd3c22499f279b8f8cd4f05b4931 (diff) | |
download | bcm5719-llvm-9f835b82fca7d703dfe34bae65aac213e2490108.tar.gz bcm5719-llvm-9f835b82fca7d703dfe34bae65aac213e2490108.zip |
Declare globals llvmAsmtext and llvmAsmleng for use in the parser.
llvm-svn: 2893
Diffstat (limited to 'llvm/lib/AsmParser/ParserInternals.h')
-rw-r--r-- | llvm/lib/AsmParser/ParserInternals.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/AsmParser/ParserInternals.h b/llvm/lib/AsmParser/ParserInternals.h index 656d718e385..13023481662 100644 --- a/llvm/lib/AsmParser/ParserInternals.h +++ b/llvm/lib/AsmParser/ParserInternals.h @@ -27,6 +27,8 @@ extern int llvmAsmlineno; extern std::string CurFilename; Module *RunVMAsmParser(const std::string &Filename, FILE *F); +extern char* llvmAsmtext; +extern int llvmAsmleng; // UnEscapeLexed - Run through the specified buffer and change \xx codes to the // appropriate character. If AllowNull is set to false, a \00 value will cause |