diff options
author | Chris Lattner <sabre@nondot.org> | 2006-12-13 17:42:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-12-13 17:42:40 +0000 |
commit | 18c3e6524dcaf03f421788c3a54020bbad9e0f48 (patch) | |
tree | 4bddbb1cdae899a677dad7ef9d1fb521f95c9e62 | |
parent | 7eb763827660f640aa0fbad8e9638c90592bd336 (diff) |
xfail these until I recommit the scalarrepl patch
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32545 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/ScalarRepl/union-fp-int.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ScalarRepl/union-packed.ll | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/test/Transforms/ScalarRepl/union-fp-int.ll b/test/Transforms/ScalarRepl/union-fp-int.ll index 9c0e23e8a6..e21751bda3 100644 --- a/test/Transforms/ScalarRepl/union-fp-int.ll +++ b/test/Transforms/ScalarRepl/union-fp-int.ll @@ -1,6 +1,8 @@ ; RUN: llvm-upgrade < %s | llvm-as | opt -scalarrepl | llvm-dis | not grep alloca && ; RUN: llvm-upgrade < %s | llvm-as | opt -scalarrepl | llvm-dis | grep 'bitcast.*float.*int' +; XFAIL: * + int %test(float %X) { %X_addr = alloca float store float %X, float* %X_addr diff --git a/test/Transforms/ScalarRepl/union-packed.ll b/test/Transforms/ScalarRepl/union-packed.ll index 0df6e3957f..20c0bc9a23 100644 --- a/test/Transforms/ScalarRepl/union-packed.ll +++ b/test/Transforms/ScalarRepl/union-packed.ll @@ -1,6 +1,8 @@ ; RUN: llvm-upgrade < %s | llvm-as | opt -scalarrepl | llvm-dis | not grep alloca && ; RUN: llvm-upgrade < %s | llvm-as | opt -scalarrepl | llvm-dis | grep 'bitcast' +; XFAIL: * + target endian = little <4 x int> %test(<4 x float> %X) { |