aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM/ARMGlobalMerge.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Target/ARM/ARMGlobalMerge.cpp')
-rw-r--r--lib/Target/ARM/ARMGlobalMerge.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/Target/ARM/ARMGlobalMerge.cpp b/lib/Target/ARM/ARMGlobalMerge.cpp
index ab6c00e..3f02383 100644
--- a/lib/Target/ARM/ARMGlobalMerge.cpp
+++ b/lib/Target/ARM/ARMGlobalMerge.cpp
@@ -53,7 +53,6 @@
#define DEBUG_TYPE "arm-global-merge"
#include "ARM.h"
-#include "ARMTargetMachine.h"
#include "llvm/CodeGen/Passes.h"
#include "llvm/Attributes.h"
#include "llvm/Constants.h"
@@ -168,11 +167,6 @@ bool ARMGlobalMerge::doInitialization(Module &M) {
unsigned MaxOffset = TLI->getMaximalGlobalOffset();
bool Changed = false;
- // Disable this pass on darwin. The debugger is not yet ready to extract
- // variable's info from a merged global.
- if (TLI->getTargetMachine().getSubtarget<ARMSubtarget>().isTargetDarwin())
- return false;
-
// Grab all non-const globals.
for (Module::global_iterator I = M.global_begin(),
E = M.global_end(); I != E; ++I) {