From 9770be91de745e4727c65c45d13de2a787aef89f Mon Sep 17 00:00:00 2001 From: Hal Finkel Date: Mon, 11 Jun 2012 19:56:57 +0000 Subject: [PATCH] Add A2 to the list of PPC CPUs recognized by Linux host CPU-type detection. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158322 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/PowerPC/PPCSubtarget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Target/PowerPC/PPCSubtarget.cpp b/lib/Target/PowerPC/PPCSubtarget.cpp index ca448bf1de2..231995f15ab 100644 --- a/lib/Target/PowerPC/PPCSubtarget.cpp +++ b/lib/Target/PowerPC/PPCSubtarget.cpp @@ -149,6 +149,7 @@ static const char *GetCurrentPowerPCCPU() { .Case("PPC970MP", "970") .Case("G5", "g5") .Case("POWER5", "g5") + .Case("A2", "a2") .Case("POWER6", "pwr6") .Case("POWER7", "pwr7") .Default(generic); -- 2.34.1