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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add a bunch more feature-checking macros for C++0x features. Some of these are
Alexis Hunt
2010-01-13
1
-0
/
+10
*
add a TODO for a perf improvement in LexIdentifier.
Chris Lattner
2010-01-11
1
-2
/
+5
*
Do not parse hexadecimal floating point literals in C++0x mode because they are
Alexis Hunt
2010-01-10
2
-3
/
+9
*
Simplify code. No functionality change.
Benjamin Kramer
2010-01-10
1
-18
/
+1
*
stringref'ize a bunch of filename handling logic. Much
Chris Lattner
2010-01-10
5
-92
/
+73
*
clarify comment.
Chris Lattner
2010-01-10
1
-2
/
+2
*
implement rdar://7520940: published framework headers should
Chris Lattner
2010-01-10
3
-3
/
+16
*
Simplify with StringSwitch.
Benjamin Kramer
2010-01-09
1
-28
/
+12
*
Teach Preprocessor::macro_begin/macro_end to lazily load all macro
Douglas Gregor
2010-01-04
2
-4
/
+32
*
Avoid an unnecessary copy of Predefines. getMemBufferCopy does the null termi...
Benjamin Kramer
2009-12-31
1
-12
/
+3
*
Convert to StringRef, avoid a memcpy in the common case.
Benjamin Kramer
2009-12-31
1
-19
/
+16
*
use best-fit instead of first-fit when reusing a MacroArgs object,
Chris Lattner
2009-12-28
1
-7
/
+16
*
The PreExpArgTokens array is indexed with an argument #,
Chris Lattner
2009-12-28
3
-7
/
+8
*
Diagnose out-of-bounds floating-point constants. Fixes rdar://problem/6974641
John McCall
2009-12-24
1
-13
/
+4
*
comment tweak
Chris Lattner
2009-12-23
1
-1
/
+1
*
fix the microsoft "charify" extension to return the charified token
Chris Lattner
2009-12-23
1
-1
/
+1
*
Eliminate a completely unnecessary buffer copy when parsing float literals.
John McCall
2009-12-23
1
-6
/
+1
*
reimplement r90860, fixing a couple of problems:
Chris Lattner
2009-12-17
1
-9
/
+21
*
enable reuse of MacroArgs objects. This is a small (2.5%) win
Chris Lattner
2009-12-15
1
-10
/
+32
*
set up the machinery for a MacroArgs cache hanging off Preprocessor.
Chris Lattner
2009-12-15
3
-2
/
+29
*
move the VarargsElided member of MacrosArgs to shrink the MacroArgs struct
Chris Lattner
2009-12-14
4
-15
/
+17
*
fix typo
Chris Lattner
2009-12-14
1
-1
/
+1
*
teach clang to recover gracefully from conflict markers left in source
Chris Lattner
2009-12-14
1
-14
/
+133
*
fix rdar://7466570 - Be more bug compatible with GCC when it comes to
Chris Lattner
2009-12-14
1
-2
/
+21
*
formatting changes.
Chris Lattner
2009-12-14
1
-4
/
+5
*
reduce indentation.
Chris Lattner
2009-12-14
1
-15
/
+14
*
Don't expand tabs when computing the offset from the code-completion column
Douglas Gregor
2009-12-08
1
-8
/
+2
*
Integrate the following from the 'objective-rewrite' branch:
Steve Naroff
2009-12-08
1
-4
/
+9
*
Get rid of some diagnostics that don't follow our rules for -pedantic
Eli Friedman
2009-12-08
1
-7
/
+0
*
Unbreak and add test case for r90276, a situation in which getBuffer is expec...
Daniel Dunbar
2009-12-06
1
-1
/
+1
*
Change Preprocessor::EnterSourceFile to make ErrorStr non-optional, clients s...
Daniel Dunbar
2009-12-06
3
-5
/
+8
*
minor tidy.
Chris Lattner
2009-12-04
1
-6
/
+5
*
Minor cleanup to the code-completion-point logic suggested by Chris.
Douglas Gregor
2009-12-03
1
-1
/
+1
*
Add 'has_feature(cxx_exceptions)' to allow code to determine via preprocessor...
Ted Kremenek
2009-12-03
1
-0
/
+3
*
Rename has_feature(rtti) to has_feature(cxx_rtti) for clarity.
Ted Kremenek
2009-12-03
1
-3
/
+3
*
Add "has_feature" support for C++ RTTI.
Ted Kremenek
2009-12-03
1
-0
/
+3
*
Extend the source manager with the ability to override the contents of
Douglas Gregor
2009-12-02
2
-23
/
+68
*
pass the reason for failure up from MemoryBuffer and report it
Chris Lattner
2009-12-01
2
-4
/
+7
*
Fix PR5633 by making the preprocessor handle the case where we can
Chris Lattner
2009-11-30
3
-11
/
+22
*
remove stall comment
Nuno Lopes
2009-11-29
1
-2
/
+1
*
Remove remaining VISIBILITY_HIDDEN from anonymous namespaces.
Benjamin Kramer
2009-11-28
1
-8
/
+7
*
Cleanup llvm/Support/Compiler.h include in header files
Kovarththanan Rajaratnam
2009-11-28
1
-0
/
+1
*
cleanup parsing of MS integer suffixes a little. this fixes PR5616
Nuno Lopes
2009-11-28
1
-27
/
+15
*
Move DISABLE_INLINE to the front of the decl so MSVC can parse it. Patch by A...
Benjamin Kramer
2009-11-14
1
-4
/
+4
*
Add static version of Preprocessor::getSpelling.
Daniel Dunbar
2009-11-14
1
-2
/
+12
*
Wherein the TargetInfo argument to Preprocessor is made 'const' and propogated.
Daniel Dunbar
2009-11-13
2
-2
/
+2
*
Switch PTHManager to using diagnostics for most errors.
Daniel Dunbar
2009-11-12
1
-24
/
+15
*
Remove an overly-eager assertion when replacing tokens with an
Douglas Gregor
2009-11-12
1
-2
/
+0
*
Allow Preprocessor to take ownership of the HeaderSearch object. I think it s...
Daniel Dunbar
2009-11-11
1
-1
/
+7
*
Add Diagnostic::Report method for reporting diagnostics without a location.
Daniel Dunbar
2009-11-10
1
-5
/
+4
[next]