Fix Typo.
authorRafael Espindola <rafael.espindola@gmail.com>
Thu, 12 Dec 2013 16:17:40 +0000 (16:17 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Thu, 12 Dec 2013 16:17:40 +0000 (16:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197168 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/Host.cpp

index c9140cb1bc603fd204cc7aedd8293304aa084fc2..c5f9c8724808e1cacc30e8fb6fe88950ded53f58 100644 (file)
@@ -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.