Use static inline to do the right thing when built in C99 mode. Of course,
[llvm/stm8.git] / test / CodeGen / PowerPC / big-endian-call-result.ll
blobfe85404cb94f2d5603cbf08eaadbae9af5ca289d
1 ; RUN: llc < %s -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | \
2 ; RUN:   grep {addic 4, 4, 1}
3 ; RUN: llc < %s -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | \
4 ; RUN:   grep {addze 3, 3}
6 declare i64 @foo()
8 define i64 @bar()
10   %t = call i64 @foo()
11   %s = add i64 %t, 1
12   ret i64 %s