1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/CodeGen/X86/2006-03-02-InstrSchedBug.ll
Reid Spencer d93b834b52 For PR1319:
Fix test syntax per new rules.

llvm-svn: 36133
2007-04-16 15:15:52 +00:00

12 lines
289 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -stats |& \
; RUN: grep asm-printer | grep 7
int %g(int %a, int %b) {
%tmp.1 = shl int %b, ubyte 1
%tmp.3 = add int %tmp.1, %a
%tmp.5 = mul int %tmp.3, %a
%tmp.8 = mul int %b, %b
%tmp.9 = add int %tmp.5, %tmp.8
ret int %tmp.9
}