blob: f683238de2686dea95316330b156c19b9e58a840 [file] [log] [blame]
Jan Wen Voung43236652013-03-12 16:27:52 +00001; REQUIRES: asserts
Chandler Carruth49589f02012-07-02 18:37:59 +00002; RUN: llc < %s -march=ppc32 -stats 2>&1 | \
Chandler Carruth4177e6f2012-07-02 12:47:22 +00003; RUN: grep "4 .*Number of machine instrs printed"
Chris Lattner603572a2007-04-11 05:02:57 +00004
5;; Integer absolute value, should produce something as good as:
6;; srawi r2, r3, 31
7;; add r3, r3, r2
8;; xor r3, r3, r2
9;; blr
10define i32 @test(i32 %a) {
11 %tmp1neg = sub i32 0, %a
12 %b = icmp sgt i32 %a, -1
13 %abs = select i1 %b, i32 %a, i32 %tmp1neg
14 ret i32 %abs
15}
16