mirror of
https://git.suyu.dev/suyu/dynarmic
synced 2024-11-21 14:29:03 -07:00
rsqrt_test: Fix on GCC
This commit is contained in:
parent
6759942b56
commit
6404f58d23
2 changed files with 4 additions and 1 deletions
|
@ -27,6 +27,9 @@ extern "C" u32 rsqrt_fallback(u32 value) {
|
|||
FP::FPSR fpsr;
|
||||
return FP::FPRSqrtEstimate(value, fpcr, fpsr);
|
||||
}
|
||||
extern "C" u32 _rsqrt_fallback(u32 value) {
|
||||
return rsqrt_fallback(value);
|
||||
}
|
||||
|
||||
void Test(u32 value) {
|
||||
FP::FPCR fpcr;
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
.global _rsqrt_fallback
|
||||
|
||||
.text
|
||||
.intel_syntax
|
||||
.intel_syntax noprefix
|
||||
|
||||
.align 16
|
||||
min_pos_denorm:
|
||||
|
|
Loading…
Reference in a new issue