diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-25 05:31:22 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-25 05:31:22 +0000 |
commit | c00d875d35d62a6ae6a02c21e8707a0c6ef43610 (patch) | |
tree | 870abc816609516f68cfb4904ac99e09ab4a8c1f /llvm/lib/MC | |
parent | 14ce18d577e8d85566d995169125dd4ff9e54416 (diff) | |
download | bcm5719-llvm-c00d875d35d62a6ae6a02c21e8707a0c6ef43610.tar.gz bcm5719-llvm-c00d875d35d62a6ae6a02c21e8707a0c6ef43610.zip |
Fix a regression from r211653.
The method was empty in the null streamer but I mistakenly replaced it with
the aborting one in MCStreamer.
llvm-svn: 211666
Diffstat (limited to 'llvm/lib/MC')
-rw-r--r-- | llvm/lib/MC/MCStreamer.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCStreamer.cpp b/llvm/lib/MC/MCStreamer.cpp index 8f45360f49d..fad1425dd1d 100644 --- a/llvm/lib/MC/MCStreamer.cpp +++ b/llvm/lib/MC/MCStreamer.cpp @@ -571,7 +571,6 @@ void MCStreamer::EmitCOFFSectionIndex(MCSymbol const *Symbol) { } void MCStreamer::EmitCOFFSecRel32(MCSymbol const *Symbol) { - llvm_unreachable("This file format doesn't support this directive"); } /// EmitRawText - If this file is backed by an assembly streamer, this dumps |