Lines Matching refs:Triple
18 #include "llvm/ADT/Triple.h"
29 Triple TT;
41 TargetMachine *EngineBuilder::selectTarget(const Triple &TargetTriple,
45 Triple TheTriple(TargetTriple);
49 // Adjust the triple to match what the user requested.
67 // Adjust the triple to match (if known), otherwise stick with the
68 // requested/host triple.
69 Triple::ArchType Type = Triple::getArchTypeForLLVMName(MArch);
70 if (Type != Triple::UnknownArch)
93 TheTriple.getArch() == Triple::arm &&
94 TheTriple.getOS() != Triple::IOS &&