Re: [cfe-commits] r155082 - in /cfe/trunk: docs/ include/clang/AST/ include/clang/Basic/ include/clang/Parse/ include/clang/Sema/ include/clang/Serialization/ lib/AST/ lib/CodeGen/ lib/Lex/ lib/Parse/

2012-04-30 Thread Douglas Gregor
On Apr 18, 2012, at 5:25 PM, Patrick Beard pcbe...@mac.com wrote: Author: pcbeard Date: Wed Apr 18 19:25:12 2012 New Revision: 155082 URL: http://llvm.org/viewvc/llvm-project?rev=155082view=rev Log: Implements boxed expressions for Objective-C. rdar://problem/10194391 Cool. Comments

Re: [cfe-commits] r155082 - in /cfe/trunk: docs/ include/clang/AST/ include/clang/Basic/ include/clang/Parse/ include/clang/Sema/ include/clang/Serialization/ lib/AST/ lib/CodeGen/ lib/Lex/ lib/Parse/

2012-04-19 Thread Jordy Rose
I can't build a fresh copy of clang right now, but doesn't this mean that @INT_MIN /will/ work now? The docs as they are now imply that you'd have to write @(INT_MIN). If only this were taken /out/ of 3.1...then that whole section could be cut, and both @INT_MIN and @INT_MAX would Just Work™.

Re: [cfe-commits] r155082 - in /cfe/trunk: docs/ include/clang/AST/ include/clang/Basic/ include/clang/Parse/ include/clang/Sema/ include/clang/Serialization/ lib/AST/ lib/CodeGen/ lib/Lex/ lib/Parse/

2012-04-19 Thread Jean-Daniel Dupas
I just try and @INT_MIN Just Works™ Le 19 avr. 2012 à 21:30, Jordy Rose a écrit : I can't build a fresh copy of clang right now, but doesn't this mean that @INT_MIN /will/ work now? The docs as they are now imply that you'd have to write @(INT_MIN). If only this were taken /out/ of