index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
Lex
/
TokenLexer.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[Lex] Speed up updateConsecutiveMacroArgTokens (NFC)
Vedant Kumar
2016-07-07
1
-3
/
+4
*
[Lexer] Don't merge macro args from different macro files
Vedant Kumar
2016-05-19
1
-0
/
+3
*
Fix remaining Clang-tidy readability-redundant-control-flow warnings; other m...
Eugene Zelenko
2016-02-12
1
-7
/
+1
*
[MSVC Compat] Accept elided commas in macro function arguments
Ehsan Akhgari
2016-01-22
1
-6
/
+11
*
When copying whitespace flags from the token naming a macro argument onto the
Richard Smith
2016-01-15
1
-0
/
+1
*
Emit a -Wmicrosoft warning when pasting /##/ into a comment token in MS mode.
Nico Weber
2015-12-29
1
-7
/
+10
*
[clang] Refactoring of conditions so they use isOneOf() instead of multiple i...
Daniel Marjamaki
2015-06-18
1
-1
/
+1
*
[MSVC] Mimic MSVC whitespace collapse for incompatible token pasting
Will Wilson
2015-04-17
1
-0
/
+7
*
Remove many superfluous SmallString::str() calls.
Yaron Keren
2015-03-18
1
-1
/
+1
*
MSVC: A wide string literal from L#macro_arg in a macro
Alexey Bataev
2014-12-15
1
-3
/
+19
*
Lex: Fix an invalid access into a SmallString
David Majnemer
2014-10-25
1
-3
/
+4
*
[C++11] Use 'nullptr'. Lex edition.
Craig Topper
2014-05-17
1
-5
/
+5
*
Wrap to 80 columns, no code change.
Nico Weber
2014-05-09
1
-4
/
+3
*
If the first token in a macro that appears at the start of a line expands to
Richard Smith
2014-02-24
1
-0
/
+1
*
Fix a non-error diagnostic that had an err_ name. Also move it from Warning to
Richard Smith
2014-02-18
1
-5
/
+4
*
Clean up whitespace checks
Justin Bogner
2014-02-04
1
-11
/
+5
*
Fix whitespace handling in empty macro expansions
Justin Bogner
2014-02-04
1
-2
/
+6
*
Fix whitespace handling in empty macro arguments
Justin Bogner
2014-02-04
1
-18
/
+13
*
Fix whitespace handling in ## operator
Justin Bogner
2014-02-04
1
-13
/
+16
*
Rename language option MicrosoftMode to MSVCCompat
Alp Toker
2014-01-14
1
-2
/
+2
*
Sort all the #include lines with LLVM's utils/sort_includes.py which
Chandler Carruth
2014-01-07
1
-1
/
+1
*
Make Preprocessor::Lex non-recursive.
Eli Friedman
2013-09-19
1
-12
/
+17
*
Use pop_back_val() instead of both back() and pop_back().
Robert Wilhelm
2013-08-23
1
-4
/
+2
*
Use SmallVectorImpl& for function arguments instead of SmallVector.
Craig Topper
2013-07-05
1
-1
/
+1
*
Match MSVC's handling of commas during macro argument expansion
Reid Kleckner
2013-06-26
1
-0
/
+8
*
[Preprocessor] Prevent expansion of y in x ## y when x is empty
Argyrios Kyrtzidis
2013-05-25
1
-7
/
+13
*
[Preprocessor] For the MacroExpands preprocessor callback, also pass the Macr...
Argyrios Kyrtzidis
2013-05-03
1
-1
/
+1
*
[preprocessor] When "merging" macro argument tokens into one SLocEntry chunk,
Argyrios Kyrtzidis
2012-12-19
1
-2
/
+6
*
Sort all of Clang's files under 'lib', and fix up the broken headers
Chandler Carruth
2012-12-04
1
-2
/
+2
*
Try to make the source location information for token pastes a bit more consi...
Eli Friedman
2012-12-01
1
-0
/
+6
*
Improved support for removing the comma preceding __VA_ARGS__ where __VA_ARGS__
Andy Gibbs
2012-11-09
1
-17
/
+64
*
Revert r163022, it caused PR13924.
Nico Weber
2012-09-26
1
-6
/
+0
*
StringRef'ize Preprocessor::CreateString().
Dmitri Gribenko
2012-09-24
1
-1
/
+1
*
Emulate MSVC's preprocessor macro argument separator behavior by not consider...
Joao Matos
2012-08-31
1
-0
/
+6
*
Make preprocessor act in a GCC-compatible fashion when a macro is redefined
Richard Smith
2012-08-30
1
-2
/
+3
*
Fix a typo (the the => the)
Sylvestre Ledru
2012-07-23
1
-1
/
+1
*
Minor improvements to some C99 variadic-macro-related diagnostics.
Richard Smith
2012-06-22
1
-3
/
+3
*
Fix issue where a token paste which forms a /* or // would discard the rest of
Richard Smith
2012-06-13
1
-2
/
+2
*
Unify naming of LangOptions variable/get function across the Clang stack (Lex...
David Blaikie
2012-03-11
1
-4
/
+4
*
Basic: import SmallString<> into clang namespace
Dylan Noblesmith
2012-02-05
1
-1
/
+1
*
Move a method from IdentifierTable.h out of line and remove the SmallString i...
Benjamin Kramer
2012-02-04
1
-1
/
+1
*
Fixed exapnsion range for # and ##.
Abramo Bagnara
2011-10-03
1
-8
/
+18
*
Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset.
Argyrios Kyrtzidis
2011-09-19
1
-2
/
+2
*
Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t...
Francois Pichet
2011-09-17
1
-3
/
+3
*
Silence 'may be used uninitialized' warnings.
Argyrios Kyrtzidis
2011-08-24
1
-2
/
+2
*
Amend r138129 (reduction of SLocEntries) which introduced performance regress...
Argyrios Kyrtzidis
2011-08-23
1
-18
/
+46
*
Introduce SourceManager::isInSLocAddrSpace and use it in TokenLexer instead o...
Argyrios Kyrtzidis
2011-08-23
1
-12
/
+9
*
Rename SourceManager::isBeforeInSourceLocationOffset -> isBeforeInSLocAddrSpace.
Argyrios Kyrtzidis
2011-08-23
1
-2
/
+1
*
TokenLexer::getExpansionLocForMacroDefLoc doesn't need to return an invalid S...
Argyrios Kyrtzidis
2011-08-23
1
-29
/
+16
*
For assigning SourceLocations to macro arg tokens, reserve a single SLocEntry
Argyrios Kyrtzidis
2011-08-19
1
-22
/
+69
[next]