HomeSort by: relevance | last modified time | path
    Searched defs:IsX32 (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
X86.h 664 const bool IsX32 = getTriple().getEnvironment() == llvm::Triple::GNUX32;
667 LongWidth = LongAlign = PointerWidth = PointerAlign = IsX32 ? 32 : 64;
673 SizeType = IsX32 ? UnsignedInt : UnsignedLong;
674 PtrDiffType = IsX32 ? SignedInt : SignedLong;
675 IntPtrType = IsX32 ? SignedInt : SignedLong;
676 IntMaxType = IsX32 ? SignedLongLong : SignedLong;
677 Int64Type = IsX32 ? SignedLongLong : SignedLong;
681 resetDataLayout(IsX32 ? "e-m:e-p:32:32-p270:32:32-p271:32:32-p272:64:64-"
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Gnu.cpp 1736 const bool IsX32 = TargetTriple.getEnvironment() == llvm::Triple::GNUX32;
1739 else if (TargetTriple.isArch64Bit() && IsX32 && !NonExistent(Altx32))
1741 else if (TargetTriple.isArch64Bit() && !IsX32 && !NonExistent(Alt64))
1746 else if (IsX32)
1769 addMultilibFlag(TargetTriple.isArch64Bit() && !IsX32, "m64", Flags);
1771 addMultilibFlag(TargetTriple.isArch64Bit() && IsX32, "mx32", Flags);

Completed in 28 milliseconds