- Apr 19, 2009
-
-
Eli Friedman authored
llvm-svn: 69545
-
Chris Lattner authored
for a token is set, this makes the diagnostic "expanded from stack" work for this diagnostic. Add a testcase for PR3918. llvm-svn: 69544
-
Eli Friedman authored
llvm-svn: 69542
-
Eli Friedman authored
llvm-svn: 69541
-
Chris Lattner authored
by rejecting invalid poisoned tokens in the token pasting path. llvm-svn: 69536
-
Sebastian Redl authored
Another piece of the conditional operator puzzle. We'll want to use FindCompositePointerType in some other places, too. llvm-svn: 69534
-
Chris Lattner authored
in a function-like macro body. This has the added bonus of moving some function-like macro specific code out of the object-like macro codepath. llvm-svn: 69530
-
Chris Lattner authored
non-glibc ones. llvm-svn: 69528
-
Chris Lattner authored
functions in glibc header files that use FP Stack inline asm which the backend can't deal with (PR879). This "fixes" PR3970 for linux. Other affected systems should do similar things. Maybe this should just go to the general i386/x86-64 sections? llvm-svn: 69527
-
Chris Lattner authored
rdar://6805442 llvm-svn: 69525
-
Chris Lattner authored
will talk to steve. llvm-svn: 69519
-
Chris Lattner authored
llvm-svn: 69517
-
rdar://6804402Chris Lattner authored
@class but no implementation. This was broken in all 3 runtime impls. llvm-svn: 69512
-
Chris Lattner authored
llvm-svn: 69511
-
Chris Lattner authored
they do allow switches. llvm-svn: 69510
-
Chris Lattner authored
calling into the jump checker when a function or method is known to contain no VLAs or @try blocks. llvm-svn: 69509
-
Chris Lattner authored
already too large. llvm-svn: 69505
-
Daniel Dunbar authored
- The confusing IRgen bitfield interface is partly to blame here; fixing the functional error for now, cleanups to the interface to follow. llvm-svn: 69503
-
Chris Lattner authored
llvm-svn: 69501
-
Chris Lattner authored
llvm-svn: 69500
-
Chris Lattner authored
address taken labels are in function scope llvm-svn: 69499
-
Chris Lattner authored
llvm-svn: 69498
-
Chris Lattner authored
llvm-svn: 69497
-
Daniel Dunbar authored
- No functionality change (but added a FIXME). llvm-svn: 69496
-
Daniel Dunbar authored
- No functionality change. llvm-svn: 69495
-
Chris Lattner authored
"This patch fixes message sends to super in class methods for the GNU runtime (currently an instance method lookup is being performed)." Patch by David Chisnall! llvm-svn: 69493
-
Chris Lattner authored
VLA's and statement expressions. llvm-svn: 69491
-
Chris Lattner authored
llvm-svn: 69487
-
Chris Lattner authored
the scope checker to not think @catches are nested in each other, eliminating some bogus notes. llvm-svn: 69486
-
Chris Lattner authored
llvm-svn: 69485
-
Chris Lattner authored
the first real character of a token. For example, advancing to byte 3 of foo\ bar should stop at the b, not the \. llvm-svn: 69484
-
Chris Lattner authored
llvm-svn: 69483
-
Chris Lattner authored
llvm-svn: 69482
-
- Apr 18, 2009
-
-
Chris Lattner authored
llvm-svn: 69481
-
Chris Lattner authored
llvm-svn: 69480
-
Chris Lattner authored
llvm-svn: 69479
-
Chris Lattner authored
reasonably well except for the problem that @catches are nested within each other in the AST, giving the ugly diagnostics in L8. llvm-svn: 69477
-
Chris Lattner authored
statements don't end up in the LabelMap so we don't have a quick way to filter them. We could add state to Sema (a "has vla" and "has jump" bit) to try to filter this out, but that would be sort of gross and I'm not convinced it is the best way. Thoughts welcome. llvm-svn: 69476
-
Anders Carlsson authored
llvm-svn: 69471
-
Anders Carlsson authored
Make CodeGenFunction::EmitCallArgs a template function that takes a generic "Type Info" parameter. The type info parameter knows how to iterate over its arguments. llvm-svn: 69469
-