[mips] Fix FP conditional move instructions to have explicit FP condition code
[oota-llvm.git] / lib / Target / TargetLoweringObjectFile.cpp
index f5121e34f77f88c472c188aae2dbd6bbe00f7b78..cd810b624f56613dc90f9c4ad28ea39521440844 100644 (file)
@@ -317,3 +317,9 @@ getTTypeReference(const MCSymbolRefExpr *Sym, unsigned Encoding,
   }
   }
 }
+
+const MCExpr *TargetLoweringObjectFile::getDebugThreadLocalSymbol(const MCSymbol *Sym) const {
+  // FIXME: It's not clear what, if any, default this should have - perhaps a
+  // null return could mean 'no location' & we should just do that here.
+  return MCSymbolRefExpr::Create(Sym, *Ctx);
+}