clang-baseline-fix-i386
authorLLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>
Wed, 6 Jan 2021 19:16:26 +0000 (19:16 +0000)
committerSylvestre Ledru <sylvestre@debian.org>
Wed, 6 Jan 2021 19:16:26 +0000 (19:16 +0000)
===================================================================

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

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

index 6b82abec6f65e43f7bffcd027d42e5daf1e376cc..5798838601bf80cf43a19545f69bf3623e1ac2b1 100644 (file)
@@ -101,8 +101,8 @@ const char *x86::getX86TargetCPU(const ArgList &Args,
   case llvm::Triple::FreeBSD:
     return "i686";
   default:
-    // Fallback to p4.
-    return "pentium4";
+    // Fallback to i686.
+    return "i686";
   }
 }