diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-06-22 05:51:26 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-06-22 05:51:26 +0000 |
| commit | 78db36271c1cc4dc81e7aea9984b69d70ffbaf25 (patch) | |
| tree | 6b042790fd1145c5e9a901396afa5b605706994c /llvm/tools/llvm-mc/AsmParser.h | |
| parent | d3f7935f50c2850e79e4dd7cab2459c1eb2b67a2 (diff) | |
| download | bcm5719-llvm-78db36271c1cc4dc81e7aea9984b69d70ffbaf25.tar.gz bcm5719-llvm-78db36271c1cc4dc81e7aea9984b69d70ffbaf25.zip | |
implement memory operand parsing.
llvm-svn: 73875
Diffstat (limited to 'llvm/tools/llvm-mc/AsmParser.h')
| -rw-r--r-- | llvm/tools/llvm-mc/AsmParser.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/tools/llvm-mc/AsmParser.h b/llvm/tools/llvm-mc/AsmParser.h index 54e3741778e..670d987bfc3 100644 --- a/llvm/tools/llvm-mc/AsmParser.h +++ b/llvm/tools/llvm-mc/AsmParser.h @@ -37,6 +37,8 @@ private: void EatToEndOfStatement(); bool ParseX86Operand(X86Operand &Op); + bool ParseX86MemOperand(X86Operand &Op); + bool ParseExpression(int64_t &Res); }; } // end namespace llvm |

