On Feb 15, 2008, at 10:09 AM, Dale Johannesen wrote: > Author: johannes > Date: Fri Feb 15 12:09:51 2008 > New Revision: 47162 > > URL: http://llvm.org/viewvc/llvm-project?rev=47162&view=rev > Log: > Remove warning about 64-bit code on processor > that doesn't support it. Per Chris.
Thanks Dale! How about changing: > if (is64Bit) { > if (!has64BitSupport()) { > Has64BitSupport = true; > } ... to: > if (is64Bit) { > Has64BitSupport = true; ... -Chris _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits