summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/global-merge-addrspace.ll
diff options
context:
space:
mode:
authorAhmed Bougacha <ahmed.bougacha@gmail.com>2015-03-23 21:17:36 +0000
committerAhmed Bougacha <ahmed.bougacha@gmail.com>2015-03-23 21:17:36 +0000
commitc9ad3ab62466cbfb774e40260161015f4fbaecae (patch)
tree1c927870bd2ec48fb6a0bdb3bd9ce572ddf54515 /test/CodeGen/ARM/global-merge-addrspace.ll
parent6a4686f3f14fe83e78348645d1a6f5f7e7f783bd (diff)
[AArch64, ARM] Enable GlobalMerge with -O3 rather than -O1.
The pass used to be enabled by default with CodeGenOpt::Less (-O1). This is too aggressive, considering the pass indiscriminately merges all globals together. Currently, performance doesn't always improve, and, on code that uses few globals (e.g., the odd file- or function- static), more often than not is degraded by the optimization. Lengthy discussion can be found on llvmdev (AArch64-focused; ARM has similar problems): http://lists.cs.uiuc.edu/pipermail/llvmdev/2015-February/082800.html Also, it makes tooling and debuggers less useful when dealing with globals and data sections. GlobalMerge needs to better identify those cases that benefit, and this will be done separately. In the meantime, move the pass to run with -O3 rather than -O1, on both ARM and AArch64. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233024 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/global-merge-addrspace.ll')
-rw-r--r--test/CodeGen/ARM/global-merge-addrspace.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/ARM/global-merge-addrspace.ll b/test/CodeGen/ARM/global-merge-addrspace.ll
index 0efa690bde2..7b71e89bbe7 100644
--- a/test/CodeGen/ARM/global-merge-addrspace.ll
+++ b/test/CodeGen/ARM/global-merge-addrspace.ll
@@ -1,4 +1,4 @@
-; RUN: llc < %s -mtriple=thumb-apple-darwin | FileCheck %s
+; RUN: llc < %s -mtriple=thumb-apple-darwin -O3 | FileCheck %s
; Test the GlobalMerge pass. Check that the pass does not crash when using
; multiple address spaces.