| Index: src/IceInstMIPS32.cpp
|
| diff --git a/src/IceInstMIPS32.cpp b/src/IceInstMIPS32.cpp
|
| index 9e7bc64410e4b547c39a85cc99119fc8a4d761d1..0cdf8a2265159dd15fb8c217446fccab2966b8f4 100644
|
| --- a/src/IceInstMIPS32.cpp
|
| +++ b/src/IceInstMIPS32.cpp
|
| @@ -129,6 +129,13 @@ void InstMIPS32Label::dump(const Cfg *Func) const {
|
| Str << getName(Func) << ":";
|
| }
|
|
|
| +void InstMIPS32Label::emit(const Cfg *Func) const {
|
| + if (!BuildDefs::dump())
|
| + return;
|
| + Ostream &Str = Func->getContext()->getStrEmit();
|
| + Str << getName(Func) << ":";
|
| +}
|
| +
|
| void InstMIPS32Label::emitIAS(const Cfg *Func) const {
|
| (void)Func;
|
| llvm_unreachable("Not yet implemented");
|
|
|