summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-04-27 20:23:58 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-04-27 20:23:58 +0000
commit2dc04b460484faf17423a787f364a13f770b4523 (patch)
treee5d522f9926f20b7fd1ce402dc1be4abf424a234 /include
parentfe2da45555f3647ee08dfc4d5fc9c81fb0995c0e (diff)
downloadllvm-2dc04b460484faf17423a787f364a13f770b4523.tar.gz
llvm-2dc04b460484faf17423a787f364a13f770b4523.tar.bz2
llvm-2dc04b460484faf17423a787f364a13f770b4523.tar.xz
Add emitThumbSet to the arm target streamer.
This fixes the asm printer implementation and lets the parser be unaware of what .thumb_set is. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207381 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/MC/MCStreamer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/MC/MCStreamer.h b/include/llvm/MC/MCStreamer.h
index 6fa61ebf82..b1a80b9abb 100644
--- a/include/llvm/MC/MCStreamer.h
+++ b/include/llvm/MC/MCStreamer.h
@@ -121,6 +121,8 @@ public:
virtual void AnnotateTLSDescriptorSequence(const MCSymbolRefExpr *SRE);
+ virtual void emitThumbSet(MCSymbol *Symbol, const MCExpr *Value);
+
void finish() override;
/// Callback used to implement the ldr= pseudo.