diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-11-17 17:57:04 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-11-17 17:57:04 +0000 |
commit | 110e7bb25cab03b6f7051a336233699f3e3ec1e3 (patch) | |
tree | 3875d8cd1c9c9a1227f95ce87270fe1efdb20a98 | |
parent | 56a1f806aff00a8be6db4eb5c9cd5c751ff0f4c1 (diff) |
Revert CPU detection code to return "generic" instead of an empty string in case
of failure. The x86 target didn't like empty cpu names and broke x86 tests on
non-x86 buildbots.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89111 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Support/CommandLine.cpp | 2 | ||||
-rw-r--r-- | lib/System/Host.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/Support/CommandLine.cpp b/lib/Support/CommandLine.cpp index 4275b28335..59340d4d5b 100644 --- a/lib/Support/CommandLine.cpp +++ b/lib/Support/CommandLine.cpp @@ -1154,7 +1154,7 @@ public: OS << " with assertions"; #endif std::string CPU = sys::getHostCPUName(); - if (CPU.empty()) CPU = "(unknown)"; + if (CPU == "generic") CPU = "(unknown)"; OS << ".\n" << " Built " << __DATE__ << " (" << __TIME__ << ").\n" << " Host: " << sys::getHostTriple() << '\n' diff --git a/lib/System/Host.cpp b/lib/System/Host.cpp index 0faf8feacf..37591a57b0 100644 --- a/lib/System/Host.cpp +++ b/lib/System/Host.cpp @@ -249,7 +249,7 @@ std::string sys::getHostCPUName() { } default: - return ""; + return "generic"; } } else if (memcmp(text.c, "AuthenticAMD", 12) == 0) { // FIXME: this poorly matches the generated SubtargetFeatureKV table. There @@ -289,10 +289,10 @@ std::string sys::getHostCPUName() { case 16: return "amdfam10"; default: - return ""; + return "generic"; } } #endif - return ""; + return "generic"; } |