diff options
author | Chris Lattner <sabre@nondot.org> | 2006-11-27 20:01:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-11-27 20:01:48 +0000 |
commit | 779d212fbd1db76af8379b867107767e4029ee8f (patch) | |
tree | a2ec6bf321462b948c0886ac1eab9412974ba476 | |
parent | f2f1643037d8631ec3ddce8a1a131493e5bcd8b6 (diff) |
this doesn't pass with CVS HEAD.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31942 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/InstCombine/cast-and-cast.ll | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/cast-and-cast.ll b/test/Transforms/InstCombine/cast-and-cast.ll index 9610f0bea0..6a1a803aeb 100644 --- a/test/Transforms/InstCombine/cast-and-cast.ll +++ b/test/Transforms/InstCombine/cast-and-cast.ll @@ -1,4 +1,9 @@ ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep bitcast + +;; This requires Reid to remove the instcombine hack that turns trunc to bool into setne. +; XFAIL: * + + bool %test1(uint %val) { %t1 = bitcast uint %val to int %t2 = and int %t1, 1 |