diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2012-10-22 23:58:19 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2012-10-22 23:58:19 +0000 |
commit | 2128aaebd850edc0415ab8f37b907077651d4399 (patch) | |
tree | c456e15411ebf3db171ac62abdfa684d9a109fdd /include | |
parent | 8f47fc8f00fbb1cc2215fc90942b0948e3ca121b (diff) | |
download | external_llvm-2128aaebd850edc0415ab8f37b907077651d4399.zip external_llvm-2128aaebd850edc0415ab8f37b907077651d4399.tar.gz external_llvm-2128aaebd850edc0415ab8f37b907077651d4399.tar.bz2 |
[ms-inline-asm] Implement _emit directive (which is roughly equivalent to .byte).
<rdar://problem/12470345>.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166451 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/MC/MCParser/MCAsmParser.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/MC/MCParser/MCAsmParser.h b/include/llvm/MC/MCParser/MCAsmParser.h index fcf5b6a..fe7bda0 100644 --- a/include/llvm/MC/MCParser/MCAsmParser.h +++ b/include/llvm/MC/MCParser/MCAsmParser.h @@ -97,9 +97,6 @@ public: const MCInstPrinter *IP, MCAsmParserSemaCallback &SI) = 0; - /// ParseStatement - Parse the next statement. - virtual bool ParseStatement() = 0; - /// Warning - Emit a warning at the location \p L, with the message \p Msg. /// /// \return The return value is true, if warnings are fatal. |