I'm apparently the only sad lonely ppc user left :)


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44622 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Driver/Targets.cpp b/Driver/Targets.cpp
index c463fb9..336beb9 100644
--- a/Driver/Targets.cpp
+++ b/Driver/Targets.cpp
@@ -674,9 +674,9 @@
 /// CreateTarget - Create the TargetInfoImpl object for the specified target
 /// enum value.
 static TargetInfoImpl *CreateTarget(const std::string& T) {
-  if (T.find("ppc-") == 0)
+  if (T.find("ppc-") == 0 || T.find("powerpc-") == 0)
     return new DarwinPPCTargetInfo(T);
-  else if (T.find("ppc64-") == 0)
+  else if (T.find("ppc64-") == 0 || T.find("powerpc64-") == 0)
     return new DarwinPPC64TargetInfo(T);
   else if (T.find("x86_64-") == 0)
     return new DarwinX86_64TargetInfo(T);