blob: e5b92ad94ef8599adc4770d100bd4de6a880ad38 (
plain)
1
2
3
4
5
6
7
8
9
|
; RUN: llvm-as < %s | llc -march=thumb
define double @t(double %x, double %y) nounwind optsize {
entry:
%0 = tail call double @llvm.pow.f64( double %x, double %y ) ; <double> [#uses=1]
ret double %0
}
declare double @llvm.pow.f64(double, double) nounwind readonly
|