diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-05-06 14:25:16 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-05-06 14:25:16 +0000 |
commit | 3d38c17b59b7e43e3aa702cdc9b96a8153c5ca82 (patch) | |
tree | e891b8d5aec03e2643eb77eb2194058124d6cd78 /llvm/test/CodeGen/X86/cmov-into-branch.ll | |
parent | cfc46f82ffeaf9e2cf14e39f3c274c37d389b150 (diff) | |
download | bcm5719-llvm-3d38c17b59b7e43e3aa702cdc9b96a8153c5ca82.tar.gz bcm5719-llvm-3d38c17b59b7e43e3aa702cdc9b96a8153c5ca82.zip |
Switch the select to branch transformation on by default.
The primitive conservative heuristic seems to give a slight overall
improvement while not regressing stuff. Make it available to wider
testing. If you notice any speed regressions (or significant code
size regressions) let me know!
llvm-svn: 156258
Diffstat (limited to 'llvm/test/CodeGen/X86/cmov-into-branch.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/cmov-into-branch.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/cmov-into-branch.ll b/llvm/test/CodeGen/X86/cmov-into-branch.ll index 3b450edb3c3..780746ab1ae 100644 --- a/llvm/test/CodeGen/X86/cmov-into-branch.ll +++ b/llvm/test/CodeGen/X86/cmov-into-branch.ll @@ -1,4 +1,4 @@ -; RUN: llc -march=x86-64 -mcpu=core2 -enable-cgp-select2branch < %s | FileCheck %s +; RUN: llc -march=x86-64 -mcpu=core2 < %s | FileCheck %s ; cmp with single-use load, should not form cmov. define i32 @test1(double %a, double* nocapture %b, i32 %x, i32 %y) { |