Home | History | Annotate | Download | only in Mips

Lines Matching defs:triple

16 #include <llvm/ADT/Triple.h>
235 if (config().targets().triple().isArch64Bit()) {
402 if (config().targets().triple().isArch32Bit()) {
999 const llvm::Triple& triple = pConfig.targets().triple();
1001 if (triple.isOSDarwin()) {
1004 if (triple.isOSWindows()) {
1008 llvm::Triple::ArchType arch = triple.getArch();
1010 if (llvm::Triple::mips64el == arch)
1011 return new Mips64GNULDBackend(pConfig, new MipsGNUInfo(triple));
1013 assert (arch == llvm::Triple::mipsel);
1014 return new Mips32GNULDBackend(pConfig, new MipsGNUInfo(triple));