diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-11-28 15:09:24 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-11-28 15:09:24 +0000 |
commit | 3e03211625bba5bbb70a193c140ebf4dd8388bb7 (patch) | |
tree | 8718195ad1fa8c36638e85c0a8835903266d1902 /lib/MC/MCStreamer.cpp | |
parent | 71e7f9210d87fa29202d851c43b5e91bbbd2fa51 (diff) |
Avoid code duplication in the many unsupported EmitGPRel32Value implementations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120243 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCStreamer.cpp')
-rw-r--r-- | lib/MC/MCStreamer.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/MC/MCStreamer.cpp b/lib/MC/MCStreamer.cpp index 69318ea354..7921957f54 100644 --- a/lib/MC/MCStreamer.cpp +++ b/lib/MC/MCStreamer.cpp @@ -55,6 +55,10 @@ void MCStreamer::EmitSymbolValue(const MCSymbol *Sym, unsigned Size, EmitValue(MCSymbolRefExpr::Create(Sym, getContext()), Size, AddrSpace); } +void MCStreamer::EmitGPRel32Value(const MCExpr *Value) { + report_fatal_error("unsupported directive in streamer"); +} + /// EmitFill - Emit NumBytes bytes worth of the value specified by /// FillValue. This implements directives such as '.space'. void MCStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue, |