aboutsummaryrefslogtreecommitdiff
path: root/lib/Frontend
AgeCommit message (Expand)Author
2011-04-24Synthesizing the definition of an implicit member is an AST modification, so ...Sebastian Redl
2011-04-23Move all of the logic for __DEPRECATED to the driver based on commentsChandler Carruth
2011-04-23Fix Clang's __DEPRECATED define to be controled by -Wdeprecated. ThisChandler Carruth
2011-04-23There were some frustrating problems with the implementation ofChandler Carruth
2011-04-22Add -fdelayed-template-parsing option. Using this option all templated functi...Francois Pichet
2011-04-21Wire up the -ftest-coverage and -fprofile-arcs flags to .gcno file emission (atNick Lewycky
2011-04-21PR9772: Fix the definition of WINT_MIN and WINT_MAX on Linux -ffreestanding.Eli Friedman
2011-04-19ADT/Triple: Switch to using .isOSDarwin() predicate.Daniel Dunbar
2011-04-15Initial work to improve documentation for Clang's diagnostics, from Matthieu ...Douglas Gregor
2011-04-15Fixes a crash when generating dependency file stuffFariborz Jahanian
2011-04-15Support for C++11 (non-template) alias declarations.Richard Smith
2011-04-15fix a bunch of comment typos found by codespell. Patch byChris Lattner
2011-04-15C1X: add a language standardPeter Collingbourne
2011-04-14Chained PCH: Remember when additional specializations are added to a function...Sebastian Redl
2011-04-14Fix -H. It was pretty broken.Sebastian Redl
2011-04-09Fix a bunch of major problems with __unknown_anytype and properly testJohn McCall
2011-04-09accept -x objc-cpp-output as an alias for -x objective-c-cpp-output,Chris Lattner
2011-04-07Frontend/CC_LOG_DIAGNOSTICS: Fix thinko and open diag log in append mode.Daniel Dunbar
2011-04-07Fronted/CC_LOG_DIAGNOSTICS: Wire up dwarf-debug-flags support.Daniel Dunbar
2011-04-07Fronted/CC_LOG_DIAGNOSTICS: Output main file name, and add support forDaniel Dunbar
2011-04-07Fronted/CC_LOG_DIAGNOSTICS: Tweak output form to be plist chunks, and don'tDaniel Dunbar
2011-04-07Frontend: Continue flushing out LogDiagnosticPrinter.Daniel Dunbar
2011-04-07Frontend: Sketch a LogDiagnosticPrinter object, and wire CC_LOG_DIAGNOSTICS toDaniel Dunbar
2011-04-07Frontend: Sketch support for -diagnostic-log-file, which still doesn't do any...Daniel Dunbar
2011-04-06Add support for Fedora16, gcc 4.6.0 and Fedora Rawhide.Eric Christopher
2011-04-04Also update CMakeList.txtArgyrios Kyrtzidis
2011-04-04Add missing file for my previous commit.Argyrios Kyrtzidis
2011-04-04Move Driver::createInvocationFromArgs function to Frontend library to avoid d...Argyrios Kyrtzidis
2011-04-04Introduce Driver::createInvocationFromArgs used to create a CompilerInvocatio...Argyrios Kyrtzidis
2011-03-31Remove a redundant isValid() checkMatt Beaumont-Gay
2011-03-31Change Clang's __VERSION__ to include the same basic info as in clang -v.Daniel Dunbar
2011-03-28Integrated-As: Support -Wa,-L when using the integrated assembler.Daniel Dunbar
2011-03-27Flip the default for showing include stacks on notes to false. ThisChandler Carruth
2011-03-27Add an option to suppress include stack printing on note diagnostics.Chandler Carruth
2011-03-23switch a few Driver APIs to use llvm::ArrayRef, cleaning up code.Chris Lattner
2011-03-23std::vector::data() is not portable to VS. Use a gross hack instead.Ted Kremenek
2011-03-22Frontend: Add a more explicit -backend-option flag for passing backend commandDaniel Dunbar
2011-03-22Rework crash recovery cleanup in ASTUnit and CIndex to recover more memory du...Ted Kremenek
2011-03-21Frontend: Change CC_PRINT_HEADERS to not print header depth markers, these don'tDaniel Dunbar
2011-03-21Improve crash recovery cleanup to recovery CompilerInstances during crash rec...Ted Kremenek
2011-03-21Use CrashRecoveryContextCleanup objects to reclaim resources from CompilerIns...Ted Kremenek
2011-03-19Preprocessor: Don't define __STDC__ in -traditional-cpp mode.Daniel Dunbar
2011-03-18Add support for language-specific address spaces. On top of that,Peter Collingbourne
2011-03-18Lexer: Add extremely limited support for -traditional-cpp, ignoring BCPLDaniel Dunbar
2011-03-18Use the newly added FileManager::getNoncachedStatValue when trying to determi...Anders Carlsson
2011-03-18Correctly store and keep track of the FileSystemOptions in ASTUnit and in cla...Anders Carlsson
2011-03-18The Darwin kernel does not provide useful guard variable support.John McCall
2011-03-18Use CrashRecoveryContextCleanup objects to recover an ASTUnit if we crash in ...Ted Kremenek
2011-03-16Fix duplicate argument processingSandeep Patel
2011-03-15lib/Frontend/InitHeaderSearch.cpp: Introduce AddMinGW64CXXPaths(Base) for x86...NAKAMURA Takumi