- Jul 25, 2010
-
-
Benjamin Kramer authored
into other code. Make it an array instead of a constant-length vector. llvm-svn: 109384
-
Evan Cheng authored
llvm-svn: 109383
-
Douglas Gregor authored
llvm-svn: 109382
-
Douglas Gregor authored
llvm-svn: 109381
-
Douglas Gregor authored
llvm-svn: 109380
-
Douglas Gregor authored
llvm-svn: 109379
-
Douglas Gregor authored
llvm-svn: 109378
-
Douglas Gregor authored
since we aren't going to be calling them ever. llvm-svn: 109377
-
Douglas Gregor authored
llvm-svn: 109375
-
Douglas Gregor authored
interaction, by effectively defaulting to DISABLE_SMART_POINTERS. We're embracing the model where all AST nodes are ASTContext-allocated and live as long as the ASTContext lives. llvm-svn: 109374
-
Douglas Gregor authored
llvm-svn: 109373
-
Douglas Gregor authored
llvm-svn: 109372
-
Bob Wilson authored
those. Radar 8231572. llvm-svn: 109367
-
Nick Lewycky authored
llvm-svn: 109366
-
Eli Friedman authored
invalid type. llvm-svn: 109365
-
Rafael Espindola authored
llvm-svn: 109364
-
Rafael Espindola authored
llvm-svn: 109363
-
Eli Friedman authored
llvm-svn: 109362
-
Eli Friedman authored
llvm-svn: 109361
-
Eli Friedman authored
this consistently. llvm-svn: 109360
-
- Jul 24, 2010
-
-
Anton Korobeynikov authored
llvm-svn: 109359
-
Eli Friedman authored
llvm-svn: 109358
-
Nick Lewycky authored
llvm-svn: 109357
-
Eli Friedman authored
dependent size. llvm-svn: 109356
-
Nick Lewycky authored
build of llvm-gcc. llvm-svn: 109355
-
Anton Korobeynikov authored
llvm-svn: 109354
-
Nick Lewycky authored
it needs to be mapped to refer to the function in the new module, not the old one. Fixes PR7700. llvm-svn: 109353
-
Chris Lattner authored
that a pointer can be null, forcing clients to think about it. llvm-svn: 109348
-
Peter Collingbourne authored
llvm-svn: 109347
-
Peter Collingbourne authored
llvm-svn: 109346
-
Duncan Sands authored
hanging off a value, then the dropping code will intentionally not drop it too (since this is almost certainly a bug). llvm-svn: 109337
-
Bob Wilson authored
instead of fixed size arrays, so that increasing FirstVirtualRegister to 16K won't cause a compile time performance regression. llvm-svn: 109330
-
Stephen Wilson authored
Thanks again to William Lynch! llvm-svn: 109328
-
Stephen Wilson authored
Patch by William Lynch! llvm-svn: 109327
-
Nick Lewycky authored
llvm-svn: 109319
-
Stephen Wilson authored
This component is still at an early stage, but allows for simple breakpoint/step-over operations and basic process control. The makefiles are set up to build the plugin under Linux only. llvm-svn: 109318
-
Sean Callanan authored
spurious guard variables on expression statics. Updated the AST result synthesizer to eliminate the unneeded result pointer. Very rudimentary expressions now evaluate correctly in the target using the new JIT-based mechanism. llvm-svn: 109317
-
-
Chris Lattner authored
when the RHS of the ||/&& is ever 0 or 1. This handles a variety of creative idioms for "true" used in C programs and fixes many false positives at the expense of a few false negatives. This fixes rdar://8230351. llvm-svn: 109314
-
Devang Patel authored
Untangle filename/dirname confusion. Store constructed strings on the side. Avoid use of Path.makeAbsolute(). DW_TAG_compile_unit uses two attributes DW_AT_name and DW_AT_comp_dir. Their expected values are: $ clang foo.c -g DW_AT_name - foo.c DW_AT_comp_dir - `pwd` $ clang one/two/foo.c -g DW_AT_name - one/two/foo.c DW_AT_comp_dir - `pwd` $ clang /tmp/one/foo.c -g DW_AT_name - /tmp/one/foo.c DW_AT_comp_dir - empty llvm-svn: 109303
-