diff options
author | Tim Northover <Tim.Northover@arm.com> | 2013-02-15 09:33:43 +0000 |
---|---|---|
committer | Tim Northover <Tim.Northover@arm.com> | 2013-02-15 09:33:43 +0000 |
commit | 1e8839302b70d77de63844332bdee9ce7d06f2c9 (patch) | |
tree | 13c018c5dfc7095a77e603f5a5de9db46e28204a /lib/Target/AArch64/AArch64TargetMachine.cpp | |
parent | 148ac534fc5592ed7031efde9a577890f078068b (diff) |
AArch64: remove ConstantIsland pass & put literals in separate section.
This implements the review suggestion to simplify the AArch64 backend. If we
later discover that we *really* need the extra complexity of the
ConstantIslands pass for performance reasons it can be resurrected.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175258 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/AArch64/AArch64TargetMachine.cpp')
-rw-r--r-- | lib/Target/AArch64/AArch64TargetMachine.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Target/AArch64/AArch64TargetMachine.cpp b/lib/Target/AArch64/AArch64TargetMachine.cpp index 5a18338d2a..33739cfa16 100644 --- a/lib/Target/AArch64/AArch64TargetMachine.cpp +++ b/lib/Target/AArch64/AArch64TargetMachine.cpp @@ -66,7 +66,6 @@ TargetPassConfig *AArch64TargetMachine::createPassConfig(PassManagerBase &PM) { bool AArch64PassConfig::addPreEmitPass() { addPass(&UnpackMachineBundlesID); - addPass(createAArch64ConstantIslandPass()); return true; } |