Index: src/IceOperand.cpp |
diff --git a/src/IceOperand.cpp b/src/IceOperand.cpp |
index ff1de640e9a69c47d70085bd216a3a64443c9e55..f4b58064432cf28d0be38afca6a2376628599ae0 100644 |
--- a/src/IceOperand.cpp |
+++ b/src/IceOperand.cpp |
@@ -554,6 +554,10 @@ void ConstantRelocatable::emitWithoutPrefix(const TargetLowering *Target, |
void ConstantRelocatable::dump(const Cfg *Func, Ostream &Str) const { |
if (!BuildDefs::dump()) |
return; |
+ if (!EmitString.empty()) { |
+ Str << EmitString; |
+ return; |
+ } |
Str << "@"; |
if (Func && !SuppressMangling) { |
Str << Func->getContext()->mangleName(Name); |