diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-10-03 00:51:32 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-10-03 00:51:32 +0000 |
commit | 0d141f867d49dadc2f7580b149464f1e8e095f03 (patch) | |
tree | 0a159a8fe2191c4a5b441a70d851f3fb1e3fcef7 /test | |
parent | 75eac5f0ebff4d0ffe10ce6bc8f2867c5f15315b (diff) | |
download | external_llvm-0d141f867d49dadc2f7580b149464f1e8e095f03.zip external_llvm-0d141f867d49dadc2f7580b149464f1e8e095f03.tar.gz external_llvm-0d141f867d49dadc2f7580b149464f1e8e095f03.tar.bz2 |
The early if conversion pass is ready to be used as an opt-in.
Enable the pass by default for targets that request it, and change the
-enable-early-ifcvt to the opposite -disable-early-ifcvt.
There are still some x86 regressions when enabling early if-conversion
because of the missing machine models. Disable the pass for x86 until
machine models are added.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165075 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/X86/early-ifcvt.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/early-ifcvt.ll b/test/CodeGen/X86/early-ifcvt.ll index 7883ffa..17b3cb2 100644 --- a/test/CodeGen/X86/early-ifcvt.ll +++ b/test/CodeGen/X86/early-ifcvt.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -enable-early-ifcvt -stress-early-ifcvt | FileCheck %s +; RUN: llc < %s -x86-early-ifcvt -stress-early-ifcvt | FileCheck %s target triple = "x86_64-apple-macosx10.8.0" ; CHECK: mm2 |