diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-12-12 16:17:40 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-12-12 16:17:40 +0000 |
commit | b75ea019ea12c24b3b382f1ac8a5c044421dc380 (patch) | |
tree | 76129bb306a13f99ee3b50c7a9e4e09869f5e667 /llvm/lib/Support | |
parent | 7abb2f9ea6d28b8eb8c5299cbb7496dfc9cd65f2 (diff) | |
download | bcm5719-llvm-b75ea019ea12c24b3b382f1ac8a5c044421dc380.tar.gz bcm5719-llvm-b75ea019ea12c24b3b382f1ac8a5c044421dc380.zip |
Fix Typo.
llvm-svn: 197168
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/Host.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Host.cpp b/llvm/lib/Support/Host.cpp index c9140cb1bc6..c5f9c872480 100644 --- a/llvm/lib/Support/Host.cpp +++ b/llvm/lib/Support/Host.cpp @@ -478,7 +478,7 @@ StringRef sys::getHostCPUName() { return "generic"; } #elif defined(__linux__) && (defined(__ppc__) || defined(__powerpc__)) -SringRef sys::getHostCPUName() { +StringRef sys::getHostCPUName() { // Access to the Processor Version Register (PVR) on PowerPC is privileged, // and so we must use an operating-system interface to determine the current // processor type. On Linux, this is exposed through the /proc/cpuinfo file. |