1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Test case for

http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20061016/038780.html

llvm-svn: 31068
This commit is contained in:
Devang Patel 2006-10-20 18:06:37 +00:00
parent 2f54afc364
commit 90e5f0400c

View File

@ -0,0 +1,8 @@
; RUN: llvm-as %s -o - | opt -instcombine | llvm-dis | grep 'and'
ulong %foo(ulong %tmp, ulong %tmp2) {
%tmp = cast ulong %tmp to uint
%tmp2 = cast ulong %tmp2 to uint
%tmp3 = and uint %tmp, %tmp2
%tmp4 = cast uint %tmp3 to ulong
ret ulong %tmp4
}