diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ca416a9..c300266 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-12-01 Roger Sayle <roger@eyesopen.com> + + PR target/9908 + * config/i386/i386.md (*call_value_1, *sibcall_value_1): Correct + Intel assembler syntax by using %A1 instead of %*%1. + 2004-12-01 Richard Henderson <rth@redhat.com> * expr.c (expand_assignment): Handle CONCAT both as a final diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index dd5cf13..84617c5 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -19878,7 +19878,7 @@ { if (constant_call_address_operand (operands[1], Pmode)) return "call\t%P1"; - return "call\t%*%1"; + return "call\t%A1"; } [(set_attr "type" "callv")]) @@ -19890,7 +19890,7 @@ { if (constant_call_address_operand (operands[1], Pmode)) return "jmp\t%P1"; - return "jmp\t%*%1"; + return "jmp\t%A1"; } [(set_attr "type" "callv")]) |