blob: 9b784e361f52120bbe6fec533a497b7e18d5a4b1 [file] [log] [blame]
Chris Lattner4446e042005-10-30 06:37:33 +00001; RUN: llvm-as < %s | llc -march=ppc32 &&
2; RUN: llvm-as < %s | llc -march=ppc32 | not grep mul
3
4int %test1(int %a) {
5 %tmp.1 = mul int %a, -2 ; <int> [#uses=1]
6 %tmp.2 = add int %tmp.1, 63 ; <int> [#uses=1]
7 ret int %tmp.2
8}
9