1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 12:02:58 +02:00
llvm-mirror/test/CodeGen/X86/2006-03-01-InstrSchedBug.ll
Reid Spencer 43899915e9 For PR1319:
Fix syntax of tests to ensure grep pattern is properly quoted.

llvm-svn: 36134
2007-04-16 15:31:49 +00:00

12 lines
299 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | not grep {subl.*%esp}
int %f(int %a, int %b) {
%tmp.2 = mul int %a, %a
%tmp.5 = shl int %a, ubyte 1
%tmp.6 = mul int %tmp.5, %b
%tmp.10 = mul int %b, %b
%tmp.7 = add int %tmp.10, %tmp.2
%tmp.11 = add int %tmp.7, %tmp.6
ret int %tmp.11
}