summaryrefslogtreecommitdiff
path: root/include/llvm/MC/MCParser
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2012-10-22 23:58:19 +0000
committerEli Friedman <eli.friedman@gmail.com>2012-10-22 23:58:19 +0000
commit2128aaebd850edc0415ab8f37b907077651d4399 (patch)
treec456e15411ebf3db171ac62abdfa684d9a109fdd /include/llvm/MC/MCParser
parent8f47fc8f00fbb1cc2215fc90942b0948e3ca121b (diff)
downloadllvm-2128aaebd850edc0415ab8f37b907077651d4399.tar.gz
llvm-2128aaebd850edc0415ab8f37b907077651d4399.tar.bz2
llvm-2128aaebd850edc0415ab8f37b907077651d4399.tar.xz
[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/llvm/MC/MCParser')
-rw-r--r--include/llvm/MC/MCParser/MCAsmParser.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/MC/MCParser/MCAsmParser.h b/include/llvm/MC/MCParser/MCAsmParser.h
index fcf5b6a9b5..fe7bda08db 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.