fix "pc" to be lower case in a target triple, patch by Yonggang Luo

llvm-svn: 79016
This commit is contained in:
Chris Lattner 2009-08-14 18:48:13 +00:00
parent 384b336911
commit 0792195c5a
1 changed files with 1 additions and 1 deletions

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