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.
11 lines
252 B
11 lines
252 B
4 years ago
|
// an implementation of sqrt for Thumb using hardware double-precision VFP instructions
|
||
|
|
||
|
double sqrt(double x) {
|
||
|
double ret;
|
||
|
asm volatile (
|
||
|
"vsqrt.f64 %P0, %P1\n"
|
||
|
: "=w" (ret)
|
||
|
: "w" (x));
|
||
|
return ret;
|
||
|
}
|