From: Benjamin Kramer Date: Thu, 28 Jun 2012 19:09:53 +0000 (+0000) Subject: Enable automatic GCC<->LLVM intrinsic translation for mips. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d5dbc8c2bb2a7803c6bb458278728d419300dc91;p=oota-llvm.git Enable automatic GCC<->LLVM intrinsic translation for mips. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159367 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/Triple.cpp b/lib/Support/Triple.cpp index 822ada7d9be..7b26ea9b422 100644 --- a/lib/Support/Triple.cpp +++ b/lib/Support/Triple.cpp @@ -62,7 +62,12 @@ const char *Triple::getArchTypePrefix(ArchType Kind) { case mblaze: return "mblaze"; - case hexagon: return "hexagon"; + case mips: + case mipsel: + case mips64: + case mips64el:return "mips"; + + case hexagon: return "hexagon"; case r600: return "r600";