diff options
Diffstat (limited to 'lib/System/Host.cpp')
-rw-r--r-- | lib/System/Host.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/System/Host.cpp b/lib/System/Host.cpp index 0faf8fe..37591a5 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"; } |