git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229790
91177308-0d34-0410-b5e6-
96231b3b80d8
O << ".target ";
O << STI.getTargetName();
- const NVPTXTargetMachine &TM = static_cast<const NVPTXTargetMachine &>(TM);
- if (TM.getDrvInterface() == NVPTX::NVCL)
+ const NVPTXTargetMachine &NTM = static_cast<const NVPTXTargetMachine &>(TM);
+ if (NTM.getDrvInterface() == NVPTX::NVCL)
O << ", texmode_independent";
else {
if (!STI.hasDouble())
O << "\n";
O << ".address_size ";
- if (TM.is64Bit())
+ if (NTM.is64Bit())
O << "64";
else
O << "32";