View | Details | Raw Unified | Return to bug 154927 | Differences between
and this patch

Collapse All | Expand All

(-)llvm-gcc4/files/patch-.._gcc_common.opt (+13 lines)
Line 0 Link Here
1
--- ../gcc/common.opt.orig	2010-07-15 23:10:17.000000000 +0000
2
+++ ../gcc/common.opt	2011-02-20 21:54:36.000000000 +0000
3
@@ -730,8 +730,8 @@
4
 
5
 ; APPLE LOCAL begin optimization pragmas 3124235/3420242
6
 fmath-errno
7
-Common Report Var(flag_errno_math) Init(1) PerFunc
8
-Set errno after built-in math functions
9
+Common Report Var(flag_errno_math) Init(0) PerFunc
10
+FreeBSD does not set errno after built-in math functions
11
 ; APPLE LOCAL end optimization pragmas 3124235/3420242
12
 
13
 fmem-report
(-)llvm-gcc4/files/patch-.._gcc_config_i386_i386.c (+11 lines)
Line 0 Link Here
1
--- ../gcc/config/i386/i386.c.orig	2011-02-20 21:45:59.000000000 +0000
2
+++ ../gcc/config/i386/i386.c	2011-02-20 21:47:35.000000000 +0000
3
@@ -1762,7 +1762,7 @@
4
 	     "-mtune=generic instead as appropriate.");
5
 
6
   if (!ix86_arch_string)
7
-    ix86_arch_string = TARGET_64BIT ? "x86-64" : "i386";
8
+    ix86_arch_string = TARGET_64BIT ? "x86-64" : "i486";
9
   /* APPLE LOCAL begin mainline */
10
   else
11
     ix86_arch_specified = 1;

Return to bug 154927