| Index: src/IceTargetLoweringARM32.cpp
|
| diff --git a/src/IceTargetLoweringARM32.cpp b/src/IceTargetLoweringARM32.cpp
|
| index a2091b22c74e60b4a3e6b153d4f89b5b9267ff56..a4aa51794f03882f5e96d4d4c646693224cb4f79 100644
|
| --- a/src/IceTargetLoweringARM32.cpp
|
| +++ b/src/IceTargetLoweringARM32.cpp
|
| @@ -2194,11 +2194,6 @@ void TargetARM32::emit(const ConstantUndef *) const {
|
| TargetDataARM32::TargetDataARM32(GlobalContext *Ctx)
|
| : TargetDataLowering(Ctx) {}
|
|
|
| -void TargetDataARM32::lowerGlobal(const VariableDeclaration &Var) const {
|
| - (void)Var;
|
| - UnimplementedError(Ctx->getFlags());
|
| -}
|
| -
|
| void TargetDataARM32::lowerGlobals(
|
| std::unique_ptr<VariableDeclarationList> Vars) {
|
| switch (Ctx->getFlags().getOutFileType()) {
|
| @@ -2212,7 +2207,7 @@ void TargetDataARM32::lowerGlobals(
|
| OstreamLocker L(Ctx);
|
| for (const VariableDeclaration *Var : *Vars) {
|
| if (GlobalContext::matchSymbolName(Var->getName(), TranslateOnly)) {
|
| - lowerGlobal(*Var);
|
| + emitGlobal(*Var);
|
| }
|
| }
|
| } break;
|
|
|