From b75ea019ea12c24b3b382f1ac8a5c044421dc380 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Thu, 12 Dec 2013 16:17:40 +0000 Subject: [PATCH] Fix Typo. llvm-svn: 197168 --- llvm/lib/Support/Host.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Support/Host.cpp b/llvm/lib/Support/Host.cpp index c9140cb1bc60..c5f9c8724808 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.