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
This commit is contained in:
Chris Lattner 2009-08-14 18:48:13 +00:00
parent 37f1cbd522
commit 56ce0f415c

View File

@ -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>";