From 6941863cad9c588b343fd5bb6377f8d1b4bb4e66 Mon Sep 17 00:00:00 2001 From: Evgeniy Stepanov Date: Mon, 16 Dec 2013 07:02:51 +0000 Subject: [PATCH] Fix Android regression in r197332. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197366 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM/ARMSubtarget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Target/ARM/ARMSubtarget.cpp b/lib/Target/ARM/ARMSubtarget.cpp index e15872b56a6..a0bf7a63e83 100644 --- a/lib/Target/ARM/ARMSubtarget.cpp +++ b/lib/Target/ARM/ARMSubtarget.cpp @@ -190,6 +190,7 @@ void ARMSubtarget::resetSubtargetFeatures(StringRef CPU, StringRef FS) { InstrItins = getInstrItineraryForCPU(CPUString); switch (TargetTriple.getEnvironment()) { + case Triple::Android: case Triple::EABI: case Triple::GNUEABI: case Triple::GNUEABIHF: -- 2.34.1