diff options
Diffstat (limited to 'gcc/config/i386/i386.md')
-rw-r--r-- | gcc/config/i386/i386.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 7756832..3300017 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -3388,7 +3388,7 @@ int r = REGNO (operands[0]); if ((SSE_REGNO_P (r) && !standard_sse_constant_p (c)) - || (FP_REGNO_P (r) && standard_80387_constant_p (c) < 1)) + || (STACK_REGNO_P (r) && standard_80387_constant_p (c) < 1)) FAIL; }) @@ -3406,7 +3406,7 @@ int r = REGNO (operands[0]); if ((SSE_REGNO_P (r) && !standard_sse_constant_p (c)) - || (FP_REGNO_P (r) && standard_80387_constant_p (c) < 1)) + || (STACK_REGNO_P (r) && standard_80387_constant_p (c) < 1)) FAIL; }) |