blob: 4885a6236138a2a9a1c5e80b1bb69f2144d8708e [file] [log] [blame]
Dan Gohman532dc2e2007-07-09 20:59:04 +00001; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | \
2; RUN: grep {addic 4, 4, 1}
3; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | \
4; RUN: grep {addze 3, 3}
5
6declare i64 @foo();
7
8define i64 @bar()
9{
10 %t = call i64 @foo()
11 %s = add i64 %t, 1
12 ret i64 %s
13}