blob: fe85404cb94f2d5603cbf08eaadbae9af5ca289d [file] [log] [blame]
Dan Gohmanda594cf2009-09-09 00:09:15 +00001; RUN: llc < %s -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002; RUN: grep {addic 4, 4, 1}
Dan Gohmanda594cf2009-09-09 00:09:15 +00003; RUN: llc < %s -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004; 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}