| Index: src/IceTargetLoweringMIPS32.cpp
|
| diff --git a/src/IceTargetLoweringMIPS32.cpp b/src/IceTargetLoweringMIPS32.cpp
|
| index 748881e3269d4256c3a3f8d5039ef4642ab353de..ee2300eb8252123422d123e9d6f7be2438dfe7ac 100644
|
| --- a/src/IceTargetLoweringMIPS32.cpp
|
| +++ b/src/IceTargetLoweringMIPS32.cpp
|
| @@ -671,11 +671,6 @@ void ConstantUndef::emit(GlobalContext *) const {
|
| TargetDataMIPS32::TargetDataMIPS32(GlobalContext *Ctx)
|
| : TargetDataLowering(Ctx) {}
|
|
|
| -void TargetDataMIPS32::lowerGlobal(const VariableDeclaration &Var) const {
|
| - (void)Var;
|
| - llvm::report_fatal_error("Not yet implemented");
|
| -}
|
| -
|
| void TargetDataMIPS32::lowerGlobals(
|
| std::unique_ptr<VariableDeclarationList> Vars) {
|
| switch (Ctx->getFlags().getOutFileType()) {
|
| @@ -689,7 +684,7 @@ void TargetDataMIPS32::lowerGlobals(
|
| OstreamLocker L(Ctx);
|
| for (const VariableDeclaration *Var : *Vars) {
|
| if (GlobalContext::matchSymbolName(Var->getName(), TranslateOnly)) {
|
| - lowerGlobal(*Var);
|
| + emitGlobal(*Var);
|
| }
|
| }
|
| } break;
|
|
|