]> Git Repo - binutils.git/commitdiff
2011-01-26 Kai Tietz <[email protected]>
authorKai Tietz <[email protected]>
Wed, 26 Jan 2011 10:16:12 +0000 (10:16 +0000)
committerKai Tietz <[email protected]>
Wed, 26 Jan 2011 10:16:12 +0000 (10:16 +0000)
        * config/tc-i386.c (md_begin): Set for x64 windows COFF target
        x86_dwarf2_return_column to 32.

gas/ChangeLog
gas/config/tc-i386.c

index 4b6c530f59e6c80028052b62ba7165326d13122d..d6e3c2198c71402e66f7bdfae2657ec34d3f6f6a 100644 (file)
@@ -1,3 +1,8 @@
+2011-01-26  Kai Tietz  <[email protected]>
+
+       * config/tc-i386.c (md_begin): Set for x64 windows COFF target
+       x86_dwarf2_return_column to 32.
+
 2011-01-20  Nick Clifton  <[email protected]>
 
        PR gas/12384
index ac15e81450de5033e2baee0bcaffb372014b310e..0028f1769a034d1a44e80ea97a4753795760daa0 100644 (file)
@@ -2371,7 +2371,12 @@ md_begin ()
 
   if (flag_code == CODE_64BIT)
     {
+#if defined (OBJ_COFF) && defined (TE_PE)
+      x86_dwarf2_return_column = (OUTPUT_FLAVOR == bfd_target_coff_flavour
+                                 ? 32 : 16);
+#else
       x86_dwarf2_return_column = 16;
+#endif
       x86_cie_data_alignment = -8;
     }
   else
This page took 0.045215 seconds and 4 git commands to generate.