- Oct 09, 2009
-
-
Mike Stump authored
to add a flag noting the presence of a Microsoft extension suffix (i8, i16, i32, i64). Patch by John Thompson. llvm-svn: 83591
-
- Sep 09, 2009
-
-
Mike Stump authored
llvm-svn: 81346
-
- Aug 17, 2009
-
-
Erick Tryzelaar authored
llvm-svn: 79211
-
- Jul 29, 2009
-
-
Daniel Dunbar authored
llvm-svn: 77420
-
- Jul 14, 2009
-
-
Alisdair Meredith authored
llvm-svn: 75627
-
- Jun 10, 2009
-
-
Eli Friedman authored
llvm-svn: 73153
-
- Jun 05, 2009
-
-
Eli Friedman authored
llvm-svn: 72928
-
- Jun 01, 2009
-
-
Eli Friedman authored
preprocessor. llvm-svn: 72686
-
- Apr 28, 2009
-
-
Chris Lattner authored
and apparently not part of -Wall llvm-svn: 70329
-
Chris Lattner authored
llvm-svn: 70315
-
Eli Friedman authored
that if we're going to print an extension warning anyway, there's no point to changing behavior based on NoExtensions: it will only make error recovery worse. Note that this doesn't cause any behavior change because NoExtensions isn't used by the current front-end. I'm still considering what to do about the remaining use of NoExtensions in IdentifierTable.cpp. llvm-svn: 70273
-
- Apr 21, 2009
-
-
Sanjiv Gupta authored
So 'abc' on i16 platforms will warn but not on i32 platforms. llvm-svn: 69653
-
- Apr 14, 2009
-
-
Chris Lattner authored
llvm-svn: 69054
-
Sanjiv Gupta authored
Literal value calculation isn't likely to overflow on targets having int as 32 or less. Fixing the assert as it otherwise triggers for PIC16 which as i16 as int. llvm-svn: 69046
-
- Apr 01, 2009
-
-
Steve Naroff authored
llvm-svn: 68198
-
Eli Friedman authored
llvm-svn: 68181
-
- Mar 31, 2009
-
-
Steve Naroff authored
llvm-svn: 68107
-
Steve Naroff authored
Implement UCN support for C string literals (C99 6.4.3) and add some very basic tests. Chris Goller has graciously offered to write some test to help validate UCN support. From a front-end perspective, I believe this code should work for ObjC @-strings. At the moment, I believe we need to tweak the code generation for @-strings (which doesn't appear to handle them). Will be investigating. llvm-svn: 68076
-
- Feb 27, 2009
-
-
Chris Lattner authored
llvm-svn: 65582
-
- Feb 18, 2009
-
-
Chris Lattner authored
escapes in the string for subtoken positioning. This gives us working examples like: t.m:5:16: warning: field width should have type 'int', but argument has type 'unsigned int' printf("\n\n%*d", (unsigned) 1, 1); ^ ~~~~~~~~~~~~ where before the caret pointed two spaces to the left. llvm-svn: 64940
-
- Jan 29, 2009
-
-
Chris Lattner authored
redundant #includes. Patch by Anders Johnsen! llvm-svn: 63271
-
- Jan 27, 2009
-
-
Chris Lattner authored
.def file for each library. This means that adding a diagnostic to sema doesn't require all the other libraries to be rebuilt. Patch by Anders Johnsen! llvm-svn: 63111
-
- Jan 16, 2009
-
-
Chris Lattner authored
into its ctor. Also, make it handle validity checking of pascal strings instead of making clients do it. llvm-svn: 62332
-
- Nov 22, 2008
-
-
Chris Lattner authored
would not eat the "-1" in "0x0p-1", but LiteralSupport would accept it when extensions are on. This caused strangeness and failures when hexfloats were properly treated as an extension (not error) in LiteralSupport. llvm-svn: 59865
-
Chris Lattner authored
its call sites. This makes it more explicit when the hasError flag is getting set and removes a confusing difference in behavior between PP.Diag and Diag in this code. llvm-svn: 59863
-
- Nov 18, 2008
-
-
Chris Lattner authored
llvm-svn: 59554
-
- Oct 16, 2008
-
-
Daniel Dunbar authored
- Implement fast path when value easily fits in a uint64. - ~6x faster, translates to 1-2% on Cocoa.h llvm-svn: 57632
-
Daniel Dunbar authored
llvm-svn: 57629
-
- Sep 30, 2008
-
-
Chris Lattner authored
llvm-svn: 56876
-
Chris Lattner authored
NumericLiteral parser is not careful about overrun because it should never be possible. It implicitly expects that its input matched the regex for pp-constant. Because of this, it knows it can't be pointing to a prefix of something that looks like a number. This is all fine, except that __LINE__ does not prevent implicit concatenation from happening. Fix __LINE__ to not do this. llvm-svn: 56818
-
- Sep 02, 2008
-
-
Eli Friedman authored
Note that this isn't really a complete fix; I think there are other potential overrun situations. I don't really know what the best systematic fix is, though. llvm-svn: 55622
-
- Aug 11, 2008
-
-
Daniel Dunbar authored
- Kill unnecessary #includes in .cpp files. This is an automatic sweep so some things removed are actually used, but happen to be included by a previous header. I tried to get rid of the obvious examples and this was the easiest way to trim the #includes in one fell swoop. - We now return to regularly scheduled development. llvm-svn: 54632
-
- Jul 25, 2008
-
-
Chris Lattner authored
t2.c:1:17: warning: hexadecimal floating constants are a C99 feature long double d = 0x0.0000003ffffffff00000p-16357L; ^ instead of emitting a weird error message that doesn't make sense: t2.c:1:41: error: hexadecimal floating constants require an exponent long double d = 0x0.0000003ffffffff00000p-16357L; ^ rdar://6096838 llvm-svn: 54035
-
- Jun 30, 2008
-
-
Chris Lattner authored
rejected FP immediates like 08.123 llvm-svn: 52890
-
Chris Lattner authored
llvm-svn: 52889
-
- Apr 20, 2008
-
-
Chris Lattner authored
llvm-svn: 49997
-
Chris Lattner authored
literal, indicate what character the error is about or where it would be. For example: pr2241.c:1:17: error: exponent has no digits float f[] = { 1e , 1ee0 }; ^ llvm-svn: 49996
-
- Apr 04, 2008
-
-
Steve Naroff authored
llvm-svn: 49229
-
- Mar 16, 2008
-
-
Chris Lattner authored
lib dir and move all the libraries into it. This follows the main llvm tree, and allows the libraries to be built in parallel. The top level now enforces that all the libs are built before Driver, but we don't care what order the libs are built in. This speeds up parallel builds, particularly incremental ones. llvm-svn: 48402
-
- Mar 05, 2008
-
-
Chris Lattner authored
llvm-svn: 47954
-