f08dbfb441
Update to llvm 3.8.1 Many other fixes and cleanups OBS-URL: https://build.opensuse.org/request/show/425075 OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/llvm?expand=0&rev=467
16 lines
422 B
Diff
16 lines
422 B
Diff
Index: cfe-3.8.1.src/lib/Driver/Tools.cpp
|
|
===================================================================
|
|
--- cfe-3.8.1.src/lib/Driver/Tools.cpp.orig
|
|
+++ cfe-3.8.1.src/lib/Driver/Tools.cpp
|
|
@@ -1680,8 +1680,8 @@ static const char *getX86TargetCPU(const
|
|
case llvm::Triple::Bitrig:
|
|
return "i686";
|
|
default:
|
|
- // Fallback to p4.
|
|
- return "pentium4";
|
|
+ // Fallback to i586.
|
|
+ return "i586";
|
|
}
|
|
}
|
|
|