summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support/Triple.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-14 18:48:13 +0000
committerChris Lattner <sabre@nondot.org>2009-08-14 18:48:13 +0000
commit0792195c5ae6c24614ba0aefe0844d55f871380d (patch)
tree62457194b2fa42e1f78376fd892834310c5fffc1 /llvm/lib/Support/Triple.cpp
parent384b33691168c2b4eed2ad3363a3c5414a2ff05b (diff)
downloadbcm5719-llvm-0792195c5ae6c24614ba0aefe0844d55f871380d.tar.gz
bcm5719-llvm-0792195c5ae6c24614ba0aefe0844d55f871380d.zip
fix "pc" to be lower case in a target triple, patch by Yonggang Luo
llvm-svn: 79016
Diffstat (limited to 'llvm/lib/Support/Triple.cpp')
-rw-r--r--llvm/lib/Support/Triple.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Triple.cpp b/llvm/lib/Support/Triple.cpp
index 65af29602ff..71cab39eb0e 100644
--- a/llvm/lib/Support/Triple.cpp
+++ b/llvm/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>";
OpenPOWER on IntegriCloud