]> granicus.if.org Git - clang/commitdiff
actually just do this on all x86 targets, it won't hurt
authorChris Lattner <sabre@nondot.org>
Sun, 19 Apr 2009 17:32:33 +0000 (17:32 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 19 Apr 2009 17:32:33 +0000 (17:32 +0000)
non-glibc ones.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69528 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Basic/Targets.cpp

index 055d16b76b8a9acf5d186b5e9d172686948bd9ee..fa23ba916214e0c1e4ba008fa81996255213e8c8 100644 (file)
@@ -607,6 +607,11 @@ void X86TargetInfo::getTargetDefines(const LangOptions &Opts,
   Define(Defs, "__tune_nocona__");
   Define(Defs, "__REGISTER_PREFIX__", "");
 
+  // Define __NO_MATH_INLINES on linux/x86 so that we don't get inline
+  // functions in glibc header files that use FP Stack inline asm which the
+  // backend can't deal with (PR879).
+  Define(Defs, "__NO_MATH_INLINES");
+  
   // Each case falls through to the previous one here.
   switch (SSELevel) {
   case SSE42:
@@ -786,11 +791,6 @@ public:
                                 std::vector<char> &Defines) const {
     X86_32TargetInfo::getTargetDefines(Opts, Defines);
     getLinuxDefines(Opts, Defines);
-    
-    // Define __NO_MATH_INLINES on linux/x86 so that we don't get inline
-    // functions in glibc header files that use FP Stack inline asm which the
-    // backend can't deal with (PR879).
-    Define(Defines, "__NO_MATH_INLINES");
   }
 };
 } // end anonymous namespace
@@ -870,11 +870,6 @@ public:
   virtual void getTargetDefines(const LangOptions &Opts,
                                 std::vector<char> &Defines) const {
     X86_64TargetInfo::getTargetDefines(Opts, Defines);
-    // Define __NO_MATH_INLINES on linux/x86 so that we don't get inline
-    // functions in glibc header files that use FP Stack inline asm which the
-    // backend can't deal with (PR879).
-    Define(Defines, "__NO_MATH_INLINES");
-    
     getLinuxDefines(Opts, Defines);
   }
 };