diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-14 18:48:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-14 18:48:13 +0000 |
commit | 56ce0f415cdf42d5c401035e2336c15e9031f03d (patch) | |
tree | 29101fe4705f81b456f0562b2c862b0757a82998 /lib/Support/Triple.cpp | |
parent | 37f1cbd5224ede4cd336d6c6639b355257f387f6 (diff) |
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
Diffstat (limited to 'lib/Support/Triple.cpp')
-rw-r--r-- | lib/Support/Triple.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/Triple.cpp b/lib/Support/Triple.cpp index 65af29602f..71cab39eb0 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 "<invalid>"; |