Home | History | Annotate | Download | only in common

Lines Matching refs:Triple

356         llvm::Triple triple(llvm::sys::getDefaultTargetTriple());
362 // for the default triple. It's probably an artifact of config.guess.
363 if (triple.getOS() == llvm::Triple::Linux && triple.getVendor() == llvm::Triple::UnknownVendor)
364 triple.setVendorName("");
366 switch (triple.getArch())
369 g_host_arch_32.SetTriple(triple);
373 case llvm::Triple::x86_64:
374 g_host_arch_64.SetTriple(triple);
376 g_host_arch_32.SetTriple(triple.get32BitArchVariant());
380 case llvm::Triple::sparcv9:
381 case llvm::Triple::ppc64:
382 g_host_arch_64.SetTriple(triple);