diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-02-16 17:29:50 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-02-16 17:29:50 +0000 |
commit | 1a7ea9dd0431287a7346cd107680deb444d39f51 (patch) | |
tree | 18ca11c286bb8be08e996af18ac74941df47afaa /test | |
parent | ea79b8e03ca7c7be72832c11e9d4d78f11b728b3 (diff) | |
download | external_llvm-1a7ea9dd0431287a7346cd107680deb444d39f51.zip external_llvm-1a7ea9dd0431287a7346cd107680deb444d39f51.tar.gz external_llvm-1a7ea9dd0431287a7346cd107680deb444d39f51.tar.bz2 |
Disable machine copy propagation for now. It's known to be buggy (PR11940) and introduces subtle miscompiles in many places.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150703 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/X86/machine-cp.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/machine-cp.ll b/test/CodeGen/X86/machine-cp.ll index 54fa01c..772d2d0 100644 --- a/test/CodeGen/X86/machine-cp.ll +++ b/test/CodeGen/X86/machine-cp.ll @@ -1,4 +1,4 @@ -; RUN: llc -mtriple=x86_64-apple-macosx -mcpu=nocona < %s | FileCheck %s +; RUN: llc -mtriple=x86_64-apple-macosx -mcpu=nocona < %s -disable-copyprop=false | FileCheck %s ; After tail duplication, two copies in an early exit BB can be cancelled out. ; rdar://10640363 |