diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-12-01 18:24:17 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-12-01 18:24:17 +0000 |
commit | 3ced545ccf22ce2d0c2a0b482a761194e3096d90 (patch) | |
tree | 1375ba1cd810a0e5bf2d313b8668929d856080bf /llvm/lib/Support/Host.cpp | |
parent | 6bd51593ca856cf2534f65abbbfaf667ef26e5a5 (diff) | |
download | bcm5719-llvm-3ced545ccf22ce2d0c2a0b482a761194e3096d90.tar.gz bcm5719-llvm-3ced545ccf22ce2d0c2a0b482a761194e3096d90.zip |
Autodetect bulldozers.
llvm-svn: 145607
Diffstat (limited to 'llvm/lib/Support/Host.cpp')
-rw-r--r-- | llvm/lib/Support/Host.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Support/Host.cpp b/llvm/lib/Support/Host.cpp index a19e4b41189..86d1c5d3414 100644 --- a/llvm/lib/Support/Host.cpp +++ b/llvm/lib/Support/Host.cpp @@ -298,6 +298,8 @@ std::string sys::getHostCPUName() { } case 16: return "amdfam10"; + case 21: + return "bdver1"; default: return "generic"; } |