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

new testcase

llvm-svn: 7791
This commit is contained in:
Chris Lattner 2003-08-12 21:35:55 +00:00
parent 3a54425d95
commit 2633d5c2b1

View File

@ -0,0 +1,10 @@
; RUN: as < %s | opt -reassociate -disable-output
implementation ; Functions:
int %test(int %A.1, int %B.1, int %C.1, int %D.1) {
%tmp.16 = and int %A.1, %B.1 ; <int> [#uses=1]
%tmp.18 = and int %tmp.16, %C.1 ; <int> [#uses=1]
%tmp.20 = and int %tmp.18, %D.1 ; <int> [#uses=1]
ret int %tmp.20
}