Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | For ModuleLoader::makeModuleVisible() also pass the source location where the | Argyrios Kyrtzidis | 2013-02-01 | 1 | -1/+2 |
| | | | | | | module import occurred. llvm-svn: 174191 | ||||
* | clang/unittests: Fixup corresponding to r172290. | NAKAMURA Takumi | 2013-01-12 | 1 | -0/+3 |
| | | | | llvm-svn: 172295 | ||||
* | Sort the #include lines for unittests/... | Chandler Carruth | 2012-12-04 | 1 | -4/+3 |
| | | | | | | I've tried to place sensible headers at the top as main-module headers. llvm-svn: 169243 | ||||
* | Fix unit tests for ModuleLoader change in r168961. | Douglas Gregor | 2012-11-30 | 1 | -4/+5 |
| | | | | llvm-svn: 168962 | ||||
* | clang/unittests: Fixup corresponding to Doug's r168136. | NAKAMURA Takumi | 2012-11-16 | 1 | -1/+1 |
| | | | | llvm-svn: 168137 | ||||
* | Teach the preprocessor to hold onto the preprocessor options. | Douglas Gregor | 2012-10-24 | 1 | -6/+4 |
| | | | | llvm-svn: 166599 | ||||
* | Update unit tests for HeaderSearch change | Douglas Gregor | 2012-10-24 | 1 | -3/+7 |
| | | | | llvm-svn: 166584 | ||||
* | More unit-test fixes | Douglas Gregor | 2012-10-23 | 1 | -0/+1 |
| | | | | llvm-svn: 166511 | ||||
* | Fixup unit tests for DiagnosticOptions change | Douglas Gregor | 2012-10-23 | 1 | -1/+1 |
| | | | | llvm-svn: 166509 | ||||
* | Fix the handling of target options in our unit tests. | Douglas Gregor | 2012-10-17 | 1 | -4/+5 |
| | | | | llvm-svn: 166079 | ||||
* | Fix the location of the fixit for -Wnewline-eof. | Jordan Rose | 2012-06-19 | 1 | -0/+48 |
| | | | | | | | It turns out SourceManager treating the "one-past-the-end" location as invalid, but then failing to set the invalid flag properly. llvm-svn: 158699 | ||||
* | [preprocessor] Handle correctly inclusion directives that have macro ↵ | Argyrios Kyrtzidis | 2012-03-27 | 1 | -0/+115 |
| | | | | | | | | | | | | | | | | | | expansions, e.g "#include MACRO(STUFF)". -As an inclusion position for the included file, use the file location of the file where it was included but *after* the macro expansions. We want the macro expansions to be considered as before-in-translation-unit for everything in the included file. -In the preprocessing record take into account that only inclusion directives can be encountered as "out-of-order" (by comparing the start of the range which for inclusions is the hash location) and use binary search if there is an extreme number of macro expansions in the include directive. Fixes rdar://11111779 llvm-svn: 153527 | ||||
* | Basic: import IntrusiveRefCntPtr<> into clang namespace | Dylan Noblesmith | 2012-02-20 | 1 | -2/+2 |
| | | | | | | | The class name is long enough without the llvm:: added. Also bring in RefCountedBase and RefCountedBaseVPTR. llvm-svn: 150958 | ||||
* | drop more llvm:: prefixes on SmallString<> | Dylan Noblesmith | 2012-02-13 | 1 | -1/+1 |
| | | | | | | More cleanup after r149799. llvm-svn: 150380 | ||||
* | Move a method from IdentifierTable.h out of line and remove the SmallString ↵ | Benjamin Kramer | 2012-02-04 | 1 | -0/+1 |
| | | | | | | | | include. Fix all the transitive include users. llvm-svn: 149783 | ||||
* | Thread a TargetInfo through to the module map; we'll need it for | Douglas Gregor | 2012-01-30 | 1 | -2/+2 |
| | | | | | | target-specific module requirements. llvm-svn: 149224 | ||||
* | clang/unittests/Basic/SourceManagerTest.cpp: Fixup corresponding to r147387. | NAKAMURA Takumi | 2011-12-31 | 1 | -2/+2 |
| | | | | llvm-svn: 147388 | ||||
* | Fix bugs in SourceManager::computeMacroArgsCache() and add a unit test for it. | Argyrios Kyrtzidis | 2011-12-21 | 1 | -0/+72 |
| | | | | llvm-svn: 147057 | ||||
* | For SourceManager::isBeforeInTranslationUnit(), have it consider macro arg ↵ | Argyrios Kyrtzidis | 2011-12-21 | 1 | -0/+108 |
expanded token locations as coming before the closing ')' of a function macro expansion. Include a unit test for SourceManager. llvm-svn: 147056 |