From: Chris Lattner Date: Fri, 14 Aug 2009 18:48:13 +0000 (+0000) Subject: fix "pc" to be lower case in a target triple, patch by Yonggang Luo X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=56ce0f415cdf42d5c401035e2336c15e9031f03d;p=oota-llvm.git fix "pc" to be lower case in a target triple, patch by Yonggang Luo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79016 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/Triple.cpp b/lib/Support/Triple.cpp index 65af29602ff..71cab39eb0e 100644 --- a/lib/Support/Triple.cpp +++ b/lib/Support/Triple.cpp @@ -46,7 +46,7 @@ const char *Triple::getVendorTypeName(VendorType Kind) { case UnknownVendor: return "unknown"; case Apple: return "apple"; - case PC: return "PC"; + case PC: return "pc"; } return "";