Lines Matching refs:IsArch32Bit
33 const bool IsArch32Bit = getToolChain().getTriple().isArch32Bit(); in ConstructJob() local
36 if (!IsArch32Bit && !IsArch64Bit) in ConstructJob()
40 if (IsArch32Bit) { in ConstructJob()
85 const bool IsArch32Bit = ToolChain.getTriple().isArch32Bit(); in ConstructJob() local
88 if (!(IsArch32Bit || IsArch64Bit)) in ConstructJob()
131 if (IsArch32Bit) { in ConstructJob()
142 auto getCrt0Basename = [&Args, IsArch32Bit] { in ConstructJob()
145 return IsArch32Bit ? "gcrt0.o" : "gcrt0_64.o"; in ConstructJob()
148 return IsArch32Bit ? "mcrt0.o" : "mcrt0_64.o"; in ConstructJob()
150 return IsArch32Bit ? "crt0.o" : "crt0_64.o"; in ConstructJob()
159 ToolChain.GetFilePath(IsArch32Bit ? "crti.o" : "crti_64.o"))); in ConstructJob()