mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 13:11:39 +01:00
df17fa8ef9
Remove && from the end of the lines to prevent tests from throwing run lines into the background. Also, clean up places where the same command is run multiple times by using a temporary file. llvm-svn: 36142
14 lines
475 B
LLVM
14 lines
475 B
LLVM
; There should be exactly one shift and one add left.
|
|
; RUN: llvm-upgrade < %s | llvm-as | \
|
|
; RUN: opt -reassociate -instcombine | llvm-dis > %t
|
|
; RUN: grep shl %t | wc -l | grep 1
|
|
; RUN: grep add %t | wc -l | grep 1
|
|
|
|
int %test(int %X, int %Y) {
|
|
%tmp.2 = shl int %X, ubyte 1 ; <int> [#uses=1]
|
|
%tmp.6 = shl int %Y, ubyte 1 ; <int> [#uses=1]
|
|
%tmp.4 = add int %tmp.6, %tmp.2 ; <int> [#uses=1]
|
|
ret int %tmp.4
|
|
}
|
|
|