1 ; RUN: llc < %s -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | \
2 ; RUN: grep "addc 4, 4, 6"
3 ; RUN: llc < %s -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | \
4 ; RUN: grep "adde 3, 3, 5"
5
6 define i64 @foo(i64 %x, i64 %y) {
7 %z = add i64 %x, %y
8 ret i64 %z
9 }
10