- ab56c5d Support langkind_cxx_pch when determining the language dialect. by Ted Kremenek · 16 years ago
- 7afae71 simplify this code by reading the decision from LangOptions instead by Chris Lattner · 16 years ago
- 85c4910 Don't accept '$' in identifiers in assembler-with-cpp mode. by Daniel Dunbar · 16 years ago
- 0ddcd14 Don't run simplify lib calls with -ffreestanding (fix for already 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
- 810f6d5 introduce a new -fheinous-gnu-extensions flag that enables really by Chris Lattner · 16 years ago
- 1fbee5d implement a new -fprint-source-range-info option, which by Chris Lattner · 16 years ago
- 50f4f46 Add Diagnostic files for Frontend and move a couple errors over. by Daniel Dunbar · 16 years ago
- 5f8d1db gnu++0x is definitely *not* the default by Gabor Greif · 16 years ago
- 26dce44 Limit the template instantiation depth to some user-configurable value by Douglas Gregor · 16 years ago
- 1510488 move -g option down into rest of codegen section by Chris Lattner · 16 years ago
- 2012604 move debug info generation flag into CompileOptions. by Chris Lattner · 16 years ago
- c5613db Improve error messages on bad warning options. by Sebastian Redl · 16 years ago
- 63a9e0f Implement the machinery that can process TableGenerated warning options. by Sebastian Redl · 16 years ago
- 110e478 To the user, this is just a compiler of course, duh. by Chris Lattner · 16 years ago
- dc76310 clean up the OVERVIEW line in clang --help. by Chris Lattner · 16 years ago
- 09e94a3 Start making use of "pretty stack dumps" to get by Chris Lattner · 16 years ago
- f63aea3 minor cleanups by Chris Lattner · 16 years ago
- 6328cc3 implement support for propagating *features* down to the code generator by Chris Lattner · 16 years ago
- 16167a6 start wiring up support for target-specific -mfoo options like -msse by Chris Lattner · 16 years ago
- e1bd4e6 Rename lib/Driver (etc) to lib/Frontend in prep for the *actual* by Daniel Dunbar · 16 years ago
- 10b2614 Adapt help string to what the code is doing (default is lang_gnu99). Thanks rdivacky! by Gabor Greif · 16 years ago
- e8e2600 Add -emit-llvm-only option (generate LLVM IR & run passes, but discard by Daniel Dunbar · 16 years ago
- adcf5b3 Put compiler headers in <prefix>/lib/clang/1.0/include (vs by Daniel Dunbar · 16 years ago
- 6858dd3 fix a bug introduced in my previous patch: moving clang headers to the by Chris Lattner · 16 years ago
- b52ec74 always search for "builtin" headers at the end of the search path, by Chris Lattner · 16 years ago
- 4709974 add a bunch of timers for -E and other modes. This requires by Chris Lattner · 16 years ago
- 4450266 move llvm backend specific #includes into Backend.cpp instead of Clang.cpp by Chris Lattner · 16 years ago
- 8a5c809 indentation and formatting by Chris Lattner · 16 years ago
- dddaa9c clang will hopefully never support ratfor. by Chris Lattner · 16 years ago
- b2509e1 wire up a minimal -ftime-report, which prints the optimizer/codegen by Chris Lattner · 16 years ago
- a034ba8 Backend: Accept -mcpu and -mattr for use by TargetMachine. by Daniel Dunbar · 16 years ago
- be1fe1e Static Analyzer driver/options (partial) cleanup: by Ted Kremenek · 16 years ago
- 5bef8dd add support for -fno-math-errno, and validate that it affects sema properly. by Chris Lattner · 16 years ago
- 5ea9d1b remove extraneous . by Chris Lattner · 16 years ago
- ef2abfe Support IRgen of sqrt -> llvm.sqrt, pow -> llvm.pow. by Daniel Dunbar · 16 years ago
- 3ada6ff PR3589: Don't simplify libcalls with -ffreestanding. by Daniel Dunbar · 16 years ago
- 3573c0c Add -ffreestanding to suppress the implicit declaration of library builtins like printf and malloc. Fixes PR3586 by Douglas Gregor · 16 years ago
- c76d807 add support for -x c++-header, update comment. by Chris Lattner · 17 years ago
- db76684 default diag::err_pp_file_not_found to mapping to fatal, by Chris Lattner · 17 years ago
- d604c40 Add -femit-all-decls codegen option. by Daniel Dunbar · 17 years ago
- a0f02aa Use the updated CommandLine api for -fno-blocks. by Mike Stump · 17 years ago
- ad53eff Fix typo noticed by Chris. by Anders Carlsson · 17 years ago
- b0f90cc Turn on -flax-vector-conversions by default, issue a warning whenever one is done. Add a -fnolax-vector-conversions option. Fixes PR2862. by Anders Carlsson · 17 years ago
- 65f5e64 wire up -fno-show-source-location option, patch by Alexei Svitkine! by Chris Lattner · 17 years ago
- b55cc63 Add -fno-blocks support. This fixes block-no-block-def.c. by Mike Stump · 17 years ago
- d2ea386 Fix name of -x option for C preprocessed input; it should be by Daniel Dunbar · 17 years ago
- 19e8e2c next round of diagnostics cleanups, moving some by Chris Lattner · 17 years ago
- 88eccaf Fix -Wimplicit-function-declaration, which required some refactoring and by Chris Lattner · 17 years ago
- 1a36089 Fix a wart that existed from before we had EXTWARN. by Chris Lattner · 17 years ago
- 500d329 move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 17 years ago
- 8a6aec6 Enhance PTHManager::Create() to take an optional Diagnostic* argument that can be used to report issues such as a missing PTH file. by Ted Kremenek · 17 years ago
- 46157b5 Patch by Alexei Svitkine: Refactor Sema::ParseAST API to allow clients to pass as an argument a TranslationUnit object whose contents live beyond the call to ParseAST. by Ted Kremenek · 17 years ago
- 007f2a9 Add a preliminary version number. by Mike Stump · 17 years ago
- 20c6b3b Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 17 years ago
- 491918e Added clang option '--analyzer-display-progress' to indicate that the analyzer should output 'ANALYZE:' messages to display its progress on a source file. by Ted Kremenek · 17 years ago
- c472d79 When using -analyzer-output-plist always output a plist file even if it contains no error reports. by Ted Kremenek · 17 years ago
- 30bc571 Use NonFragileABI as name of new Next abi. More comments for the new meta-data. by Fariborz Jahanian · 17 years ago
- a05ff45 Adjust to api change. by Chris Lattner · 17 years ago
- ee0af74 Refactoring ObjC Next's runtime classes in preparation for the new ObjC's abi. by Fariborz Jahanian · 17 years ago
- e56f6ff Don't turn off blocks when compiling Obj-C code by Anders Carlsson · 17 years ago
- d427023 Add -analyze action to run static analyzer, instead of inferring from by Daniel Dunbar · 17 years ago
- 025c3a6 add a simplified lexer ctor that sets up the lexer to raw-lex an entire file. by Chris Lattner · 17 years ago
- 2b2453a this massive patch introduces a simple new abstraction: it makes by Chris Lattner · 17 years ago
- 72b1b15 IdentifierInfo: by Ted Kremenek · 17 years ago
- d77b251 Fix typo and spelling of -Wunused-macros. by Daniel Dunbar · 17 years ago
- 2d75d6f Add an initial framework of a DeclContextPrinter. It can print DeclContext and by Zhongxing Xu · 17 years ago
- 4920f1f Implement support for anonymous structs and unions in C. Both C and by Douglas Gregor · 17 years ago
- 1b95a65 Always print out SourceManager stats with 'Stats' is true. This revealed that PTH always pulls in the source pages with -fsyntax-only (investigating further). by Ted Kremenek · 17 years ago
- f890191 Enable support for '-x objective-c++-header'. by Ted Kremenek · 17 years ago
- 17d0d0d Place warning about 'readonly' property attributes which by Fariborz Jahanian · 17 years ago
- b789103 Remove redunant (and incorrect) call to SourceManager::PrintStats(). This would be called after a SourceManager was 'cleared', so it printed bogus results. Moreover, these stats are already printed earlier in the code path. by Ted Kremenek · 17 years ago
- a629190 Force i[0-9]86 to i386 when using LLVM_HOSTTRIPLE. by Daniel Dunbar · 17 years ago
- 802db9b -std=c99 defaults blocks to off even on darwin, but -fblocks overrides even it. by Chris Lattner · 17 years ago
- ae0ee03 instead of forcing blocks on by default, make them default to off, but let by Chris Lattner · 17 years ago
- 8fc4dfb replace useNeXTRuntimeAsDefault with a generic hook that allows targets by Chris Lattner · 17 years ago
- c2e7299 Add "-token-cache" option for using pretokenized cache files. by Ted Kremenek · 17 years ago
- c157145 Add LangOptions marker for assembler-with-cpp mode and use to define by Daniel Dunbar · 17 years ago
- 5fd5468 Enable blocks in C++ by Douglas Gregor · 17 years ago
- cb7de52 Implement implicit conversions for Objective-C specific types, e.g., by Douglas Gregor · 17 years ago
- 2092236 Add plugin loading for clang. This will be used to load alternative constraint manager for static analysis. by Zhongxing Xu · 17 years ago
- 3f0850e reverting this because it breaks some blocks cases, I'll send doug a testcase by Ted Kremenek · 17 years ago
- dc518e2 Don't turn off blocks in C++ by Douglas Gregor · 17 years ago
- a03a5b5 switch TextDiagnosticPrinter to raw_ostream. by Chris Lattner · 17 years ago
- 5917fe1 remove a helper method with only one call site. by Chris Lattner · 17 years ago
- d68ba0e Move backend output out of destructor. by Daniel Dunbar · 17 years ago
- 4fc82c8 Hook up the Plist diagnostic client to the driver. Fix Plist output. by Ted Kremenek · 17 years ago
- ad99dbf Rename 'HTMLDiagnostics.h' to 'PathDiagnosticClients.h' by Ted Kremenek · 17 years ago
- dd913e5 Turn off module verification in Release-Asserts builds. by Daniel Dunbar · 17 years ago
- e10b0f2 "One" line fix for -parse-noop failure, "id" and several other things by Daniel Dunbar · 17 years ago
- ac7ffe0 Improve llvm-gcc compatibility, -Os implies -O2 (sortof). by Daniel Dunbar · 17 years ago
- 8e8f3b7 Choose CompileOptions (optimization passes) to match llvm-gcc more closely. by Daniel Dunbar · 17 years ago
- 1b450b0 .s files don't require the preprocessor, patch by Roman Divacky! by Chris Lattner · 17 years ago
- 524b86f Call llvm_shutdown() on (normal) termination. This makes --time-passes usable. by Daniel Dunbar · 17 years ago
- 276373d With -verify, only exit early on failure. by Daniel Dunbar · 17 years ago
- 879c3ea Remove unneeded CheckASTConsumer function. - No functionality change. by Daniel Dunbar · 17 years ago
- 9a30c24 Use string literal for format string specifier; this prevents ErrMsg from being interpretted as a format string specifier. by Ted Kremenek · 17 years ago
- 750c358 Add initial dependency file generation support. Patch by Kovarththanan by Daniel Dunbar · 17 years ago
- 95c7b00 Make the analyzer store (memory model) a command line option. by Ted Kremenek · 17 years ago
- 7cae2f6 Added driver option "-cxx-inheritance-view" for viewing the C++ hierarchy of a class in GraphViz. by Ted Kremenek · 17 years ago