clang-baseline-fix-i386
authorLLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>
Mon, 11 Sep 2023 13:40:42 +0000 (14:40 +0100)
committerGianfranco Costamagna <locutusofborg@debian.org>
Mon, 11 Sep 2023 13:40:42 +0000 (14:40 +0100)
===================================================================

Gbp-Pq: Name clang-baseline-fix-i386.patch

clang/lib/Driver/ToolChains/Arch/X86.cpp

index 3c8adf3cbc404135b4603d661c7fe611a6a5505a..c49bb5b9452b3e96bfaf21ef6554742d1de0c2f7 100644 (file)
@@ -111,8 +111,8 @@ std::string x86::getX86TargetCPU(const Driver &D, const ArgList &Args,
   case llvm::Triple::FreeBSD:
     return "i686";
   default:
-    // Fallback to p4.
-    return "pentium4";
+    // Fallback to i686.
+    return "i686";
   }
 }