* config/i386/i386.c (output_set_got): Fix typo in pic no-deep case.
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 23 May 2002 21:25:04 +0000 (21:25 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 23 May 2002 21:25:04 +0000 (21:25 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53809 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/i386/i386.c

index 69160df..eb4c715 100644 (file)
@@ -1,5 +1,9 @@
 2002-05-23  Richard Henderson  <rth@redhat.com>
 
+       * config/i386/i386.c (output_set_got): Fix typo in pic no-deep case.
+
+2002-05-23  Richard Henderson  <rth@redhat.com>
+
        * doc/extend.texi (C++98 Thread-Local Edits): Update with
        commentary from Mark.
 
index c4752e6..f76dbcf 100644 (file)
@@ -3898,7 +3898,7 @@ output_set_got (dest)
   if (!flag_pic || TARGET_DEEP_BRANCH_PREDICTION)
     output_asm_insn ("add{l}\t{%1, %0|%0, %1}", xops);
   else
-    output_asm_insn ("add{l}\t{%1+[.-%X2], %0|%0, %a1+(.-%X2)}", xops);
+    output_asm_insn ("add{l}\t{%1+[.-%a2], %0|%0, %a1+(.-%a2)}", xops);
 
   return "";
 }