> +SDOperand > +X86TargetLowering::LowerGlobalTLSAddress(SDOperand Op, SelectionDAG > &DAG) { > + // TODO: implement the "local dynamic" model > + // TODO: implement the "initial exec"model for pic executables > + assert(!Subtarget->is64Bit() && "TLS not implemented for X86_64"); > + GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op); Well, it seems assert should be: assert(!Subtarget->is64Bit() && Subtarget->isTargetELF() && "TLS not implemented for non-ELF and 64-bit targets");
-- With best regards, Anton Korobeynikov. Faculty of Mathematics & Mechanics, Saint Petersburg State University. _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits