mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-10 05:41:40 +00:00
205b641954
input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. llvm-svn: 81537
11 lines
319 B
LLVM
11 lines
319 B
LLVM
; RUN: opt < %s -tailcallelim -S | grep call
|
|
; Don't turn this into an infinite loop, this is probably the implementation
|
|
; of fabs and we expect the codegen to lower fabs.
|
|
|
|
define double @fabs(double %f) {
|
|
entry:
|
|
%tmp2 = call double @fabs( double %f ) ; <double> [#uses=1]
|
|
ret double %tmp2
|
|
}
|
|
|