Replace all instances of dg.exp file with lit.local.cfg, since all tests are run...
[oota-llvm.git] / test / Transforms / SimplifyLibCalls / abs.ll
1 ; RUN: opt < %s -simplify-libcalls -S | grep {select i1 %ispos}
2 ; PR2337
3
4 define i32 @test(i32 %x) {
5 entry:
6         %call = call i32 @abs( i32 %x )         ; <i32> [#uses=1]
7         ret i32 %call
8 }
9
10 declare i32 @abs(i32)
11