- ada4fa7 [driver] Do emit the diagnostics when CompilerInvocation::CreateFromArgs() fails. by Argyrios Kyrtzidis · 13 years ago
- 8fdb6de Let CompilerInvocation initialization indicate failure by Dylan Noblesmith · 13 years ago
- f358c8a Add LinkAllPasses to clang by Tobias Grosser · 13 years ago
- d6471f7 Rename Diagnostic to DiagnosticsEngine as per issue 5397 by David Blaikie · 13 years ago
- a6b4045 Match LLVM change: TargetRegistry and TargetSelect have been moved to Support. by Evan Cheng · 13 years ago
- 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
- d99d3e1 Match LLVM API change. by Evan Cheng · 13 years ago
- 2860e30 Match createTargetMachine API change. by Evan Cheng · 13 years ago
- e27eb59 Match llvm API change. by Evan Cheng · 13 years ago
- f073324 cc1 must initialize MC subtarget infos for inline asm parsing. Re-enable asm-errors.c by Evan Cheng · 13 years ago
- 77d2c5f Fix an obvious typo. by Benjamin Kramer · 14 years ago
- b59c79f cc1: Fix stats printing by default when using -mllvm -stats. by Daniel Dunbar · 14 years ago
- 4b93d66 Re-instate r125819 and r125820 with no functionality change by Peter Collingbourne · 14 years ago
- 96b1d4b Revert 125820 and 125819 to fix PR9266. by Rafael Espindola · 14 years ago
- 906c73f Move CompilerInstance::LLVMContext and LLVMContext ownership to CodeGenAction by Peter Collingbourne · 14 years ago
- 33e4e70 Refactoring of Diagnostic class. by Argyrios Kyrtzidis · 14 years ago
- 1b7255d Move ExecuteCompilerInvocation to a new library FrontendTool by Peter Collingbourne · 14 years ago
- bdbb004 Simplify the ownership model for DiagnosticClients, which was really by Douglas Gregor · 14 years ago
- 726578c Call llvm::remove_fatal_error_handler before deallocating objects by Dan Gohman · 14 years ago
- 8eb2b01 Frontend: Move the bulk of the cc1_main() processing into by Daniel Dunbar · 14 years ago
- a6bf47f clang -cc1: Move real diagnostics client initialization to earlier. by Daniel Dunbar · 14 years ago
- f56a488 Frontend: Change PluginASTAction::ParseArgs to take a CompilerInstance object by Daniel Dunbar · 14 years ago
- 87c3007 Eliminate the "minimal" and printing parser actions, which only ever by Douglas Gregor · 14 years ago
- f033f1d Introduce a new lexer function to compute the "preamble" of a file, by Douglas Gregor · 14 years ago
- 3177aae Frontend: Allow passing -cc1 level arguments to plugins. Patch by Troy Straszheim! by Daniel Dunbar · 15 years ago
- 9b414d3 Break Frontend's dependency on Rewrite, Checker and CodeGen in shared library configuration by Daniel Dunbar · 15 years ago
- 32148ce Driver/Frontend: Add -emit-codegen-only, for running irgen + codegen but not the by Daniel Dunbar · 15 years ago
- 41b5b17 Driver/MC: Add 'clang -cc1as' integrated assembler tool, currently accepts approximately the same interface as 'llvm-mc'. by Daniel Dunbar · 15 years ago
- f78cc43 Add a stub frontend action for BoostCon, for next week's workshop. by Douglas Gregor · 15 years ago
- cb421fa Fix -Wcast-qual warnings. by Dan Gohman · 15 years ago
- 3f87fb0 Driver/Frontend: Add support for -mllvm, which forwards options to the LLVM option parser. by Daniel Dunbar · 15 years ago
- b69eca5 Fronted: Kill overly specialized RecordLayoutDumper, just make -dump-record-layouts a bit that Sema honors. by Daniel Dunbar · 15 years ago
- 1e3c6f4 update for api change. by Chris Lattner · 15 years ago
- cabae68 reduce indentation, tidy. by Chris Lattner · 15 years ago
- 01ae93f inline in MC assembly parsers. clang -integrated-as now works with inline asm! by Chris Lattner · 15 years ago
- 95dd558 Teach Clang's -cc1 option -print-stats to print LLVM statistics. by Douglas Gregor · 15 years ago
- 30bc7e8 make -ftime-report work even in -disable-free mode. Woo, finally. by Chris Lattner · 15 years ago
- 42444fb Frontend: Don't free the CompilerInstance or FrontendActions when running under by Daniel Dunbar · 15 years ago
- 2758595 clang -cc1: Kill off -empty-input only, and replace with -init-only which is an by Daniel Dunbar · 15 years ago
- 4ee3461 Frontend: Pull CodeGenAction out more, and eliminate CreateBackendConsumer. by Daniel Dunbar · 15 years ago
- 79b7f9a Remove unused includes. by Daniel Dunbar · 15 years ago
- 42e9f8e4 CompilerInstance: Move LLVMContext member out of constructor. by Daniel Dunbar · 15 years ago
- f25491d Switch clang to use its own LLVMContext (not the global one). by Daniel Dunbar · 15 years ago
- 9bed879 Introduce a testbed for merging multiple ASTs into a single AST by Douglas Gregor · 15 years ago
- da1573f clang -cc1: Wire up -emit-obj, for emitting object files. by Daniel Dunbar · 15 years ago
- 0397af2 cc1: Factor out CompilerInstance::ExecuteAction which has the majority of the by Daniel Dunbar · 15 years ago
- a817b77b cc1: Lift creation of the FrontendAction higher. by Daniel Dunbar · 15 years ago
- 49ac8e6 Remove RewriteBlocks. It has been superseded by RewriteObjC by Kovarththanan Rajaratnam · 15 years ago
- 3055be7 Fix pretty stack traces. by Daniel Dunbar · 15 years ago
- 8b9adfe Add -resource-dir to clang -cc1, this allows the base directory for compiler by Daniel Dunbar · 15 years ago
- 1e69fe3 CompilerInvocation: Move builtin-include-path logic out of CompilerInvocation::CreateFromArgs. by Daniel Dunbar · 15 years ago
- 9f61aa9 Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave by Jeffrey Yasskin · 15 years ago
- 2108577 Implement clang -cc1. by Daniel Dunbar · 15 years ago
- c88aa79 Put CompilerInvocation testing code in clang-cc instead of clang for now, I can't bear to link all of clang into 'clang' yet. :) by Daniel Dunbar · 15 years ago
- e032452 Change CompilerInvocation::CreateFromArgs to report errors using a proper diagnostic engine. by Daniel Dunbar · 15 years ago
- 545c281 Change CompilerInvocation::CreateFromArgs to take Argv0 and the address of main (or something in the main executable) so it can find the builtin compiler files. by Daniel Dunbar · 15 years ago
- 20be8c4 Switch CompilerInvocation::CreateFromArgs to take const char** arguments until Driver itself switches to StringRef. by Daniel Dunbar · 15 years ago
- 1be3b3b Fix some default in the option classes, and some CompilerInvocation argification by Daniel Dunbar · 15 years ago
- 217acbf Sketch some 'clang -cc1' support, for testing parts of CompilerInvocation. by Daniel Dunbar · 15 years ago