summaryrefslogtreecommitdiff
path: root/lib/Support/Host.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-12-12 16:17:40 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-12-12 16:17:40 +0000
commit35e19348d9a844ad1c89243ab78843157c5cfad9 (patch)
tree0d4b53390cc366f5576de049ea2460b1de7357a1 /lib/Support/Host.cpp
parente60ffe35a2d75e7e3f458e21387bf88040842b82 (diff)
downloadllvm-35e19348d9a844ad1c89243ab78843157c5cfad9.tar.gz
llvm-35e19348d9a844ad1c89243ab78843157c5cfad9.tar.bz2
llvm-35e19348d9a844ad1c89243ab78843157c5cfad9.tar.xz
Fix Typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197168 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Host.cpp')
-rw-r--r--lib/Support/Host.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/Host.cpp b/lib/Support/Host.cpp
index c9140cb1bc..c5f9c87248 100644
--- a/lib/Support/Host.cpp
+++ b/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.