- 47ac7d2 Driver: Stub out Tool::ConstructJob. by Daniel Dunbar · 16 years ago
- aa3e0d2 Driver: Fix Compilation::getArgsForToolChain, local variable was by Daniel Dunbar · 16 years ago
- c811b6c Driver: Add two normalizations for powerpc. - PR3830 by Daniel Dunbar · 16 years ago
- 8cc9d08 fix PR3809, codegen for inc/dec of function pointers. by Chris Lattner · 16 years ago
- c3953a6 teach codegen to handle noop casts as lvalues. by Chris Lattner · 16 years ago
- 99c7622 Fix -E mismatch; an identifier followed by a numeric constant does not by Daniel Dunbar · 16 years ago
- 10ffa9a Driver: Ditch Driver::DefaultToolChain, this can vary between compilations. by Daniel Dunbar · 16 years ago
- e29cd6f Driver: I was too hasty in free'ing Actions, we sometimes share by Daniel Dunbar · 16 years ago
- 6d91b04 Driver: Initialize Arg::Claimed by Daniel Dunbar · 16 years ago
- 2154923 Driver: Move actions into Compilation, and construct the compilation earlier. by Daniel Dunbar · 16 years ago
- 5796bf4 Driver: Add test for binding of precompile; exposed bug due to my by Daniel Dunbar · 16 years ago
- c2fdb07 Use a work list to recursively build up the subregion mapping, and mark live by Zhongxing Xu · 16 years ago
- ec29d36 Driver: Implement JoinedAndSeparateArg::getValue and add parsing test case. by Daniel Dunbar · 16 years ago
- b25c7c1 Driver: UnknownHostInfo was always returning 0. by Daniel Dunbar · 16 years ago
- 8f25c79 Driver: Use PrettyStackTrace. by Daniel Dunbar · 16 years ago
- 6c473c8 cleanup instantiation code, tighten testcase by Gabor Greif · 16 years ago
- 7e4534d Driver: Release Host, ToolChain, and Tool implementations. by Daniel Dunbar · 16 years ago
- 087edcf instantiate ?: expressions by Gabor Greif · 16 years ago
- ca5e77f The scope representation can now be either a DeclContext pointer or a by Douglas Gregor · 16 years ago
- d46f0ac Driver: Add test case for -ccc-clang-archs (which, it turns out, was inverted). by Daniel Dunbar · 16 years ago
- 0d48bf9 pull a nested conditional + comment out into its own variable, by Chris Lattner · 16 years ago
- 897cd90 don't crash when sentinel attribute is used on function without a prototype, by Chris Lattner · 16 years ago
- 2fa8c25 Fix Type::getDesugaredType() to remove all direct sugar on by Chris Lattner · 16 years ago
- 5c3c1d7 Driver: Add -ccc-print-bindings option (for testing); the Python by Daniel Dunbar · 16 years ago
- 31b1e54 Driver: Add name to Tool (for testing/debugging) and move GCC_* tools by Daniel Dunbar · 16 years ago
- 6199190 Stub out some code for support for NSDeallocateObject. This is enabled yet until by Ted Kremenek · 16 years ago
- aae82f1 GCC 4.0 isn't happy with VISIBILITY_HIDDEN on a namespace. by Chris Lattner · 16 years ago
- 985b825 Driver: GCC 4.0 isn't happy with VISIBILITY_HIDDEN on a namespace. by Daniel Dunbar · 16 years ago
- 9c073ff Driver: Stub out generic GCC tool selection (missed a file) by Daniel Dunbar · 16 years ago
- 670b7f4 Driver: Stub out generic GCC tool selection. by Daniel Dunbar · 16 years ago
- 83b08eb Driver: Stub out generic GCC tool chain implementation. by Daniel Dunbar · 16 years ago
- baf0775 Driver: Make sure to get the default arch name from the tool chain, not the by Daniel Dunbar · 16 years ago
- fa0cda4 Driver: Pass HostInfo reference into ToolChain. by Daniel Dunbar · 16 years ago
- 8dbc269 Refactor instantiation of declarations within a template into a much by Douglas Gregor · 16 years ago
- e504952 Driver: Pass Driver reference down into Host info, which will need it by Daniel Dunbar · 16 years ago
- ec504fd Driver: Fix typo ArgList destructor. by Daniel Dunbar · 16 years ago
- f95e9fc retain/release checker: Add support for reasoning about -dealloc. by Ted Kremenek · 16 years ago
- 879fd49 Implement instantiation of enums within class templates. This isn't by Douglas Gregor · 16 years ago
- 1fd6c4b Driver: Hide HostInfo implementations. by Daniel Dunbar · 16 years ago
- cd4e186 Driver: Add two option form of ArgList::getLastArg. by Daniel Dunbar · 16 years ago
- 441d060 Driver: Add logic for computing where to put job outputs (pipe, by Daniel Dunbar · 16 years ago
- 3494bb1 Add ArgList::MakeArgString and make ArgList::Make* const. by Daniel Dunbar · 16 years ago
- d7ee349 typo by Gabor Greif · 16 years ago
- 0ae7b2b Initialize the cleanup.dst variable if necessary. Fixes PR3789. by Anders Carlsson · 16 years ago
- 70c1684 Fix unused variable warning in -Asserts mode. by Daniel Dunbar · 16 years ago
- 0cde0a3 Handle ImplicitCastExprs when instantiating templates. by Anders Carlsson · 16 years ago
- ec9b5d5 Fix struct field's debug info. by Devang Patel · 16 years ago
- 1ac02dc Fix a problem noticed by Anders, where we were creating by Douglas Gregor · 16 years ago
- 7c80bd6 Almost complete implementation of rvalue references. One bug, and a few unclear areas. Maybe Doug can shed some light on some of the fixmes. by Sebastian Redl · 16 years ago
- a393e9e Build system changes to use TableGen to generate the various by Douglas Gregor · 16 years ago
- f257b61 Check signedness of bitfield sizes. by Anders Carlsson · 16 years ago
- f353c8c Driver: Implement majority tool binding logic. by Daniel Dunbar · 16 years ago
- 586dc23 Driver: Migrate some data into the Compilation; after pipelining by Daniel Dunbar · 16 years ago
- 2ba38ba Driver: Sketch Tool and ToolChain classes. by Daniel Dunbar · 16 years ago
- 05532f2 Parser support for rvalue references. by Sebastian Redl · 16 years ago
- 76b1c84 (Hopefully) instantiate dependent array types correctly. by Anders Carlsson · 16 years ago
- 94b15fb Handle static_asserts when instantiating structs. by Anders Carlsson · 16 years ago
- a135fb4 Add the ability to clone integer and string literals. Use it when instantiating template expressions. by Anders Carlsson · 16 years ago
- f53597f Convert a bunch of actions to smart pointers, and also bring PrintParserCallbacks a bit more in line with reality. by Sebastian Redl · 16 years ago
- 3e287c2 Fix bitfield-instantiation ownership bug noticed by Anders by Douglas Gregor · 16 years ago
- 77d8142 Make sure to release the expressions. by Anders Carlsson · 16 years ago
- c8a7952 Add note on theoretical IRgen improvement. by Daniel Dunbar · 16 years ago
- 73f697f Remove a FIXME. by Daniel Dunbar · 16 years ago
- cf117d3 Only intptr_t is protected by __intptr_t_defined. by Daniel Dunbar · 16 years ago
- 411f2e4 Driver: claim input arguments when building phases. by Daniel Dunbar · 16 years ago
- 8d2554a Driver: Start warning about unused arguments. by Daniel Dunbar · 16 years ago
- 8022fd4 Driver: Update ArgList::{hasArg,getLastArg} to optionally claim the by Daniel Dunbar · 16 years ago
- e89b6b2 Revert the switch to the tablegen diags. It fails for seperate objdir builds and cmake builds, and I have no clue what to do about it. Revisit this after someone with a clue about the build systems has looked at it. by Sebastian Redl · 16 years ago
- 3801d71 Switch diagnostics from .def to tablegen files. Please validate the Windows build. by Sebastian Redl · 16 years ago
- c308241 Handle dependent types/exprs in static_assert expressions. by Anders Carlsson · 16 years ago
- 3eb8dd7 Remove dead DeclarationName constructors that involving knowing about the by Ted Kremenek · 16 years ago
- fb31176 More static_assert work. Check that the assert expr is valid and show an error if it's false. Create the declaration and add it to the current context. by Anders Carlsson · 16 years ago
- f80a9d5 Check for overflow and signedness problems with template by Douglas Gregor · 16 years ago
- 8af2c16 Make Selector::getIdentifierInfo() private. I took a first attempt at this last by Ted Kremenek · 16 years ago
- 5b0f752 Make sure that the canonical representation of integral template arguments uses the bitwidth and signedness of the template parameter by Douglas Gregor · 16 years ago
- bc736fc Implement template instantiation for the prefix unary operators. As by Douglas Gregor · 16 years ago
- 4db938c Driver: Add types::{isAcceptedByClang,isCXX} predicates. by Daniel Dunbar · 16 years ago
- 789e220 Driver: Add simple Job classes, simple wrappers for information about by Daniel Dunbar · 16 years ago
- 7f28a9c Do up codegen for function static data and externs in functions in block by Mike Stump · 16 years ago
- ad5f960 Pass more sane arguments to ActOnStaticAssertDeclaration by Anders Carlsson · 16 years ago
- 0c3f599 Driver: Action vtables were still hungry. by Daniel Dunbar · 16 years ago
- 879d27a BlockDecl::Destroy now deallocates BlockDecl's array of ParmVarDecl*. by Ted Kremenek · 16 years ago
- f40ed17 Driver: Provide food and shelter for Action vtables. by Daniel Dunbar · 16 years ago
- 7644f07 wire up a new -fno-builtin option, make it control things like simplifylibcalls, by Chris Lattner · 16 years ago
- 57b704d Driver: Sprinkle some consts in, stub out BuildJobs method. by Daniel Dunbar · 16 years ago
- 7c175fb fix PR3798 by ignoring all diagnostics generated while repreprocessing a file in rewrite macros. by Chris Lattner · 16 years ago
- 836040f make Preprocessor::Diags be a pointer instead of a reference. by Chris Lattner · 16 years ago
- 7f549df use accessor instead of poking ivar directly by Chris Lattner · 16 years ago
- ba49817 Implement template instantiation for several more kinds of expressions: by Douglas Gregor · 16 years ago
- 209bb43 Fix a bug in building function pointer type corresponding to block pointer. by Fariborz Jahanian · 16 years ago
- 1368954 Driver: For universal builds, handle archs in the order they were seen. by Daniel Dunbar · 16 years ago
- 8be2a67 Fix PR 3677 [retain checker]: custom 'allocWithZone' methods should be allowed by Ted Kremenek · 16 years ago
- 9d25423 Remove FIXME, issue has been resolved. by Mike Stump · 16 years ago
- 1d65fa7 Remove an already-fixed FIXME by Douglas Gregor · 16 years ago
- 063daf6 Refactor the way we handle operator overloading and template by Douglas Gregor · 16 years ago
- 83dd21f Driver: Fix '-x none' handling. by Daniel Dunbar · 16 years ago
- 2093335 ccc/Driver: Normalize phase spelling in -ccc-print-phases. by Daniel Dunbar · 16 years ago
- 3dbd6c5 Driver: Some minor bug fixes. by Daniel Dunbar · 16 years ago
- 810f6d5 introduce a new -fheinous-gnu-extensions flag that enables really by Chris Lattner · 16 years ago
- ecdd841 add a helper function to strip noop casts. by Chris Lattner · 16 years ago