From e04deb9914b524da60f92615b8f45bc27ccb3d2d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 18 Sep 2006 05:25:10 +0000 Subject: [PATCH] new testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30455 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/InstCombine/cast.ll | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/Transforms/InstCombine/cast.ll b/test/Transforms/InstCombine/cast.ll index 69f31b4e6ca..7d6a3cb93d1 100644 --- a/test/Transforms/InstCombine/cast.ll +++ b/test/Transforms/InstCombine/cast.ll @@ -192,5 +192,10 @@ uint %test30(uint %c1) { ret uint %c4 } - +bool %test31(ulong %A) { + %B = cast ulong %A to int + %C = and int %B, 42 + %D = seteq int %C, 10 + ret bool %D +} -- 2.34.1