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

Chris Lattner <[email protected]> changed:

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

--- Comment #1 from Chris Lattner <[email protected]> 2010-12-18 16:00:22 CST 
---
The warning is correct.  "a,b" is a comma expression which evaluates and throws
away the value of "a".  That for loop compiles to the exact same code as:

for (NSUInteger j = finish; j != NSUIntegerMax; j--) {

-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- 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