blob: 009f46811e78ce8e1ab78345a6be3d35d46d4cba [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 {addc 4, 4, 6}
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 {adde 3, 3, 5}
5
6define i64 @foo(i64 %x, i64 %y) {
7 %z = add i64 %x, %y
8 ret i64 %z
9}