| Index: src/IceOperand.cpp
|
| diff --git a/src/IceOperand.cpp b/src/IceOperand.cpp
|
| index 27dc6a34ffe69c0c7eabd618025268245ce9eba5..213318594e65ccf2d3a0dc085f13bd5be037e781 100644
|
| --- a/src/IceOperand.cpp
|
| +++ b/src/IceOperand.cpp
|
| @@ -554,19 +554,14 @@ void ConstantRelocatable::emitWithoutPrefix(const TargetLowering *Target,
|
| Target->emitWithoutPrefix(this, Suffix);
|
| }
|
|
|
| -void ConstantRelocatable::dump(const Cfg *Func, Ostream &Str) const {
|
| +void ConstantRelocatable::dump(const Cfg *, Ostream &Str) const {
|
| if (!BuildDefs::dump())
|
| return;
|
| if (!EmitString.empty()) {
|
| Str << EmitString;
|
| return;
|
| }
|
| - Str << "@";
|
| - if (Func && !SuppressMangling) {
|
| - Str << Func->getContext()->mangleName(Name);
|
| - } else {
|
| - Str << Name;
|
| - }
|
| + Str << "@" << Name;
|
| const RelocOffsetT Offset = getOffset();
|
| if (Offset) {
|
| if (Offset >= 0) {
|
|
|