* config/i386/i386.c (output_set_got): Fix typo in pic no-deep case.
authorRichard Henderson <rth@redhat.com>
Thu, 23 May 2002 21:25:04 +0000 (14:25 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Thu, 23 May 2002 21:25:04 +0000 (14:25 -0700)
From-SVN: r53809

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

index 69160dfb69261afb1f2ff6582f9134dff9db064e..eb4c71542076228834736b7e16adfa08fd81a361 100644 (file)
@@ -1,3 +1,7 @@
+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
index c4752e6c1df630669271018965de51cda6e2f03e..f76dbcfe206c3b693654514f265b3cb1afe54cba 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 "";
 }