commit | 7bd4cc1d47651cc9efe8f3fcf4a63c24c0596cb3 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Mon Jun 22 05:51:26 2009 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Mon Jun 22 05:51:26 2009 +0000 |
tree | cdf834633f745d549a677ad43b75ecff3009e99f | |
parent | b7629aad012d74f5ec4328bcef29582b86a2b657 [diff] [blame] |
implement memory operand parsing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73875 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/llvm-mc/AsmParser.h b/tools/llvm-mc/AsmParser.h index 54e3741..670d987 100644 --- a/tools/llvm-mc/AsmParser.h +++ b/tools/llvm-mc/AsmParser.h
@@ -37,6 +37,8 @@ void EatToEndOfStatement(); bool ParseX86Operand(X86Operand &Op); + bool ParseX86MemOperand(X86Operand &Op); + bool ParseExpression(int64_t &Res); }; } // end namespace llvm