You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
275 B
10 lines
275 B
4 months ago
|
; RUN: llc -mtriple=arm-eabi %s -o /dev/null
|
||
|
|
||
|
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
|