- 5ee0aa7 Recognize -fsyntax-only as a "consumer only" action. by Daniel Dunbar · 15 years ago
- 0f9fed7 Add Diagnostic::Report method for reporting diagnostics without a location. by Daniel Dunbar · 15 years ago
- b6d1cc8 PreprocessorOptions: Get rid of unnecessary 'isPTH' flag for include entries. by Daniel Dunbar · 15 years ago
- e0a9581 Decouple more of clang-cc by moving ImplicitP[CT]H options into by Daniel Dunbar · 15 years ago
- 7976f59 Update CMake file. by Ted Kremenek · 15 years ago
- 0063e98 Use #include <stdio.h> when using fprintf and stderr. by Dan Gohman · 15 years ago
- 0498cfc clang-cc: Start moving "pure" option handling to Options.cpp, to separate it by Daniel Dunbar · 15 years ago
- 9773429 clang-cc: Sink more options inside codegenopts namespace. by Daniel Dunbar · 15 years ago
- e359445 Change LangOpts initialization to directly test the code generation options, by Daniel Dunbar · 15 years ago
- 0854d70 CIndex: Only display diagnostics to llvm::errs() when the client has set the 'displayDiagnostics' option to 1 in clang_createIndex(). This fixes <rdar://problem/7370691>. by Ted Kremenek · 15 years ago
- 8fa01c8 Driver: Run 'clang' in C++ mode based on the name it was invoked by. We match by Daniel Dunbar · 15 years ago
- fcb0c3b Factor out parts of InitializeCompileOptions that depend on the LangOptions. by Daniel Dunbar · 15 years ago
- 8d35314 Localize -disable-llvm-optzns handling to BackendConsumer::CreatePasses. by Daniel Dunbar · 15 years ago
- bc2ea34 clang-cc: Start sinking (CodeGen) options into namespaces to limit their scope. by Daniel Dunbar · 15 years ago
- 9af8695 Cleanup some clang-cc FIXMEs by Daniel Dunbar · 15 years ago
- 36f4ec3 Add CompileOptions to CompilerInvocation. by Daniel Dunbar · 15 years ago
- 89f8c1d Simplify, following MemoryBuffer::getSTDIN API fix. by Daniel Dunbar · 15 years ago
- 9253e49 Remove some if-0'd code, we can resurrect this if we ever decide to support by Daniel Dunbar · 15 years ago
- 5fc7d34 Add PreprocessorOptions to CompilerInvocation. by Daniel Dunbar · 15 years ago
- 2cdafa8 Privatize InitHeaderSearch, this functionality is only exposed via by Daniel Dunbar · 15 years ago
- 26a0cac Move LangOptions, HeaderSearchOptions, and the target feature map into by Daniel Dunbar · 15 years ago
- 638c901 Switch Target* to Target&. by Daniel Dunbar · 15 years ago
- 227b238 Change clang-cc to expect that all inputs have the same language (so we can only construct a single LangInfo). This matches how it is used in practice (since the compiler only it invokes it for one file at a time). by Daniel Dunbar · 15 years ago
- 094a84c (llvm up) Convert clang-cc.cpp:GetLanguage to StringSwitch. by Daniel Dunbar · 15 years ago
- ff4393c Make sure that we look into nested, transparent declaration contexts by Douglas Gregor · 15 years ago
- e29709f Add CompilerInvocation object, to capture all the options one needs to invoke by Daniel Dunbar · 15 years ago
- 62cf322 Factor CXString creation into a helper method. by Benjamin Kramer · 15 years ago
- 858e5de Writing to a struct passed by value is pointless. Remove dead code. by Benjamin Kramer · 15 years ago
- 88d2395 Improve c-index-test's parsing of the -code-completion-at=file:line:column argument by Douglas Gregor · 15 years ago
- ef0cef6 Introduce CXString type and associated functions clang_getCString() and clang_disposeString(). by Steve Naroff · 15 years ago
- d5a2089 C doesn't allow mixing declarations and statements, silly by Douglas Gregor · 15 years ago
- 3ac7385 Minor cleanup for CIndex-based code-completion: by Douglas Gregor · 15 years ago
- 4ee17ac Revert unintentional change to this file. by Daniel Dunbar · 15 years ago
- c619033 Move a function which returns a class outside of extern C scope. by Daniel Dunbar · 15 years ago
- 4dc99f8 CIndex: Add temporary hack to leak memory instead of returning invalid pointers. by Daniel Dunbar · 15 years ago
- f8297f1 Fix some build warnings. by Daniel Dunbar · 15 years ago
- 597e7c3 Add some missing libraries for CMake as well. by Daniel Dunbar · 15 years ago
- 286bf95 Add some missing libraries. by Daniel Dunbar · 15 years ago
- dd35ce9 Switch clang-cc to use ApplyHeaderSearchOptions, and fix a thinko. by Daniel Dunbar · 15 years ago
- e166582 Lift InitHeaderSearch::AddEnvVarPaths logic higher. by Daniel Dunbar · 15 years ago
- 8863b98 Rename PreprocessorInitOptions to PreprocessorOptions for consistency, and fix by Daniel Dunbar · 15 years ago
- 750156a Lift compiler builtin include path logic higher. by Daniel Dunbar · 15 years ago
- 0c8296d Various improvements to Clang's code-completion infrastructure: by Douglas Gregor · 15 years ago
- 40d1bb6 Eliminate tabls by John Thompson · 15 years ago
- a6fda12 Adding -fshort-wchar option. by John Thompson · 15 years ago
- efcbe94 Replace DiagnosticClient::setLangOptions with {Begin,End}SourceFile, and clarify by Daniel Dunbar · 15 years ago
- efceabd Convert CreateAnalysisConsumer and friends to just take a const Preprocessor&, and simplify. by Daniel Dunbar · 15 years ago
- ad451cc Remove clang-cc -html-diags option, this doesn't fit in well and we get plenty by Daniel Dunbar · 15 years ago
- 4cc1a25 Simplify. by Daniel Dunbar · 15 years ago
- 64acf1d CreatePreprocessor cannot fail by Daniel Dunbar · 15 years ago
- 90b1827 Kill PreprocessorFactory, which was both morally repugnant and totally unused. by Daniel Dunbar · 15 years ago
- 593c41f Turn if chain into switch. by Daniel Dunbar · 15 years ago
- 938963f InitializePreprocessor cannot fail. by Daniel Dunbar · 15 years ago
- 468fe24 Move -undef flag into PreprocessorInitOptions by Daniel Dunbar · 15 years ago
- 838be48 Move -fcolor-diagnostics logic to driver. by Daniel Dunbar · 15 years ago
- 55efe14 Move logic for selection -fmessage-length= to driver. by Daniel Dunbar · 15 years ago
- eace874 Factor out a diagnostic options class. by Daniel Dunbar · 15 years ago
- 59876c2 Merge constant array and structures. This will create a global variables for arrays and structs that are constant and their initializer is constant. It is on by default but can be disable with the flag -fno-merge-all-constants. by Tanya Lattner · 15 years ago
- e6113de Implement support for the -undef command line option, patch by by Chris Lattner · 15 years ago
- 1184191 Sort export list. by Daniel Dunbar · 15 years ago
- 7c15e71 Remove clang-cc code for handling -mmacosx-version-min and by Daniel Dunbar · 15 years ago
- 0d69b8c - Add/tweak some comments. by Steve Naroff · 15 years ago
- 8cb6562 Move some clang-cc errors to use diagnostics, and simplify. by Daniel Dunbar · 15 years ago
- f9f6196 clang_getDeclSpelling(): For category implementations, make sure we hand back the category name (not the class name). This fixes <rdar://problem/7297518>. by Steve Naroff · 15 years ago
- 607d7f6 Reject -I- in driver instead of clang-cc. by Daniel Dunbar · 15 years ago
- bea5a84 Formatting fixes. by Daniel Dunbar · 15 years ago
- f96b524 Remove _clang_initCXLookupHint() and _clang_getCursorWithHint(). Related to <rdar://problem/7310688>. by Steve Naroff · 15 years ago
- f20288c make CallGraph more flexible by letting it accept ASTContext instead of ASTUnit. by Zhongxing Xu · 15 years ago
- 8814503 Add support for 'CXFile' (<rdar://problem/7303360>). by Steve Naroff · 15 years ago
- 2e06fc8 Changes for building as a Windows DLL by John Thompson · 15 years ago
- feb15e3 Unify Unix and Windows code paths when executing 'clang'. by Ted Kremenek · 15 years ago
- 779e5f4 Remove unnecessary calls to 'flush()'. by Ted Kremenek · 15 years ago
- 09bdd59 clang-cc: Allow building for x86_64 with -mmacosx-version-min=10.4. by Daniel Dunbar · 15 years ago
- 8d737cc Rename -nostdclanginc to -nobuiltininc. by Rafael Espindola · 15 years ago
- cab9882 Fixes a warning. by Fariborz Jahanian · 15 years ago
- 8ee1f3f Always emit error diagnostics when an error occurs within clang_createTranslationUnit() and clang_createTranslationUnitFromSource(). These kind of errors are ones that shouldn't be missed. by Ted Kremenek · 15 years ago
- fbcb2b7 Split clang_getCursor() into clang_getCursor() and clang_getCursorWithHint(). by Ted Kremenek · 15 years ago
- 379afec Add some explanatory diagnostics when clang_createTranslationUnitFromSource fails. by Ted Kremenek · 15 years ago
- 139ba86 Enhance 'clang_createTranslationUnitFromSourceFile()' in two ways: by Ted Kremenek · 15 years ago
- 6a6de8b Extend clang_getCursor() to take a 'relativeDecl' argument (so speed up searching). Without a 'relativeDecl', the algorithm is n-squared. For example, running the following command on 'Large.m' takes hours without a 'relatvieDecl'. by Steve Naroff · 15 years ago
- e56b4ba by Steve Naroff · 15 years ago
- c46e463 Fix inverted preprocessor guard, and fix the resulting compiler error that was unmasked. by Ted Kremenek · 15 years ago
- 1374598 Really fix <rdar://problem/7312058> by adding a 'displayDiagnostics' option to by Ted Kremenek · 15 years ago
- fc06221 The constructor for ASTUnit now takes a DiagnosticClient*, allowing uses of ASTUnit to specify by Ted Kremenek · 15 years ago
- 49358d8 Re-order includes so that the logic involving '#ifdef LLVM_ON_WIN32' appears after the main #includes. The ultimate solution is to just use LLVM-portable methods in llvm/System. by Ted Kremenek · 15 years ago
- 36c4464 Move Diagnostic/DiagClient/FileManager from Indexer => ASTUnit. by Steve Naroff · 15 years ago
- bade7de Change indenting for case/compound statements to conform to the rest of clang. by Steve Naroff · 15 years ago
- c5a9e95 CIndex: make variable non-static to avoid potential race conditions, per by Benjamin Kramer · 15 years ago
- e013d68 Move clients to use IdentifierInfo::getNameStart() instead of getName() by Daniel Dunbar · 15 years ago
- 63444b3 Try to unbreak MSVC build. by Benjamin Kramer · 15 years ago
- b14346b CIndex: fix typo. by Benjamin Kramer · 15 years ago
- edcd828 Missed a paren. by Benjamin Kramer · 15 years ago
- 20d7581 CIndex: add a (untested) WIN32 codepath to get ClangPath. by Benjamin Kramer · 15 years ago
- 5e4bc59 CIndex: compute ClangPath lazily. by Benjamin Kramer · 15 years ago
- 0829a83 CIndex: replace fork/exec with our portable ExecuteAndWait wrapper. by Benjamin Kramer · 15 years ago
- 9670762 CIndex: avoid a dangling pointer issue. by Benjamin Kramer · 15 years ago
- a47dd19 Attempt to unbreak the MSVC build. by Daniel Dunbar · 15 years ago
- 8b88ca6 Simplify (move guard to caller instead of callee). by Daniel Dunbar · 15 years ago
- 85f5468 Fix compiler warning: "ISO C90 forbids mixed declarations and code" by Ted Kremenek · 15 years ago
- 8ce88a4 Fix warning: 'warning: C++ style comments are not allowed in ISO C90' by Ted Kremenek · 15 years ago