http://llvm.org/bugs/show_bug.cgi?id=16334

Justin Holewinski <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |INVALID

--- Comment #6 from Justin Holewinski <[email protected]> ---
No, the constant folding is happening (post-PTX).  You can see an add of
constant 0x4000 (16384).  The issue here is that the address arithmetic is now
being done with 64-bit types.  This is why you see many more integer arithmetic
ops (64-bit arithmetic using 32-bit instructions), and why ISCADD is not
sufficient here.  Unfortunately this is a consequence of using a 64-bit address
space.

I'm closing this out as I don't see any actionable items here.  Please feel
free to re-open if you see anything.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to