[llvm-commits] [llvm] r47162 - in /llvm/trunk/lib/Target: PowerPC/PPCSubtarget.cpp X86/X86Subtarget.cpp

Chris Lattner clattner at apple.com
Fri Feb 15 10:31:49 PST 2008


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




More information about the llvm-commits mailing list