From: Vikram S. Adve Date: Sun, 14 Jul 2002 22:49:40 +0000 (+0000) Subject: Declare globals llvmAsmtext and llvmAsmleng for use in the parser. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f946bcdc23ad14bdfaf299769700ad2a56560a36;p=oota-llvm.git Declare globals llvmAsmtext and llvmAsmleng for use in the parser. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2893 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AsmParser/ParserInternals.h b/lib/AsmParser/ParserInternals.h index 656d718e385..13023481662 100644 --- a/lib/AsmParser/ParserInternals.h +++ b/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