PowerPC: add EmitTCEntry class for TOC creation
[oota-llvm.git] / lib / MC / MCStreamer.cpp
index 0bac24dc3a73761b53b4e0bbf36dbd4f8cd2e341..afece0ba5519444abb24961285c4380a9184321e 100644 (file)
@@ -561,6 +561,10 @@ void MCStreamer::EmitRegSave(const SmallVectorImpl<unsigned> &RegList, bool) {
   abort();
 }
 
+void MCStreamer::EmitTCEntry(const MCSymbol &S) {
+  llvm_unreachable("Unsupported method");
+}
+
 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
 /// the specified string in the output .s file.  This capability is
 /// indicated by the hasRawTextSupport() predicate.