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
/
Driver
/
PrintPreprocessedOutput.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Move <root>/Driver into <root>/tools/clang-cc.
Daniel Dunbar
2009-03-24
1
-469
/
+0
*
fix test/Preprocessor/macro_paste_mscomment.c.
Chris Lattner
2009-03-20
1
-1
/
+1
*
factor token concatenation avoidance logic out of
Chris Lattner
2009-02-13
1
-222
/
+9
*
make -dM emit macros in a deterministic (sorted) order instead of
Chris Lattner
2009-02-10
1
-2
/
+14
*
use efficient form of getSpelling, this speeds up -dM by 16%.
Chris Lattner
2009-02-10
1
-1
/
+9
*
Add an implementation of -dM that follows GCC closely enough to permit
Chris Lattner
2009-02-06
1
-25
/
+87
*
factor some code out into a helper function.
Chris Lattner
2009-02-06
1
-40
/
+49
*
lower the interface to getLineNumber like we did for
Chris Lattner
2009-02-04
1
-1
/
+1
*
avoid emitting a bogus line marker for the top level #include
Chris Lattner
2009-01-30
1
-1
/
+3
*
Introduce a new PresumedLoc class to represent the concept of a location
Chris Lattner
2009-01-27
1
-3
/
+4
*
minor speedups/cleanups for -E mode.
Chris Lattner
2009-01-26
1
-8
/
+11
*
This change refactors some of the low-level lexer interfaces a bit.
Chris Lattner
2009-01-26
1
-0
/
+2
*
Make sure to escape " when it occurs in a string in pragma comment
Chris Lattner
2009-01-16
1
-1
/
+1
*
Make -E mode propagate #pragma comment's into the output.
Chris Lattner
2009-01-16
1
-2
/
+31
*
more SourceLocation lexicon change: instead of referring to the
Chris Lattner
2009-01-16
1
-5
/
+5
*
Change some terminology in SourceLocation: instead of referring to
Chris Lattner
2009-01-16
1
-5
/
+5
*
make paste avoidance avoid pasting digraphs and :: only when digraphs or c++ ...
Chris Lattner
2009-01-11
1
-3
/
+6
*
[LLVM up] Update for raw_fd_ostream change. This fixes a FIXME that
Daniel Dunbar
2008-11-13
1
-1
/
+1
*
Rename Characteristic_t to CharacteristicKind
Chris Lattner
2008-10-27
1
-3
/
+3
*
clean up a bunch of fixme's I added, by moving
Chris Lattner
2008-09-26
1
-6
/
+6
*
fit in 80 cols.
Chris Lattner
2008-09-26
1
-1
/
+1
*
Make clang preprocessed output a bit more like gcc output.
Daniel Dunbar
2008-09-26
1
-1
/
+1
*
Workaround gcc bug causing crash on our preprocessed outputs.
Daniel Dunbar
2008-09-05
1
-44
/
+45
*
Use raw_ostream to output an unsigned.
Chris Lattner
2008-08-19
1
-27
/
+2
*
printing with an unspecified dest means to print to stdout.
Chris Lattner
2008-08-17
1
-1
/
+1
*
don't delete a variable on the stack
Chris Lattner
2008-08-17
1
-2
/
+2
*
simplify this code a bit more.
Chris Lattner
2008-08-17
1
-15
/
+7
*
remove global variables for output stream.
Chris Lattner
2008-08-17
1
-87
/
+69
*
Switch to shared raw_ostream code instead of having it be clang specific.
Chris Lattner
2008-08-17
1
-101
/
+17
*
Fix rdar://5843510 don't assert and die when an invalid output
Chris Lattner
2008-04-11
1
-4
/
+12
*
Fix rdar://5846705: "clang -E foo.c -o foo.i" should remove foo.i on error.
Chris Lattner
2008-04-08
1
-9
/
+26
*
Make -o work with -E, patch contributed by Shantonu Sen!
Chris Lattner
2008-01-27
1
-11
/
+31
*
avoid pasting L + "foo" into L"foo".
Chris Lattner
2008-01-15
1
-2
/
+27
*
avoid token pasting between identifiers and wide strings:
Chris Lattner
2008-01-15
1
-12
/
+27
*
Don't attribute in file headers anymore. See llvmdev for the
Chris Lattner
2007-12-29
1
-2
/
+2
*
Interned MainFileID within SourceManager. Since SourceManager is referenced by
Ted Kremenek
2007-12-19
1
-2
/
+2
*
simplify the interfaces to ProcessInputFile and InitializePreprocessor
Chris Lattner
2007-12-15
1
-2
/
+1
*
The flags on tokens indicate whether they are the start of a *physical* line,
Chris Lattner
2007-12-09
1
-16
/
+33
*
Fix a pretty big but subtle bug counting the number of newlines to emit.
Chris Lattner
2007-12-09
1
-1
/
+1
*
fix a bunch of regressions I introduced :(
Chris Lattner
2007-10-10
1
-1
/
+1
*
clang -E should not print tokens from the predefines buffer.
Chris Lattner
2007-10-10
1
-5
/
+16
*
Make a significant change to invert the control flow handling
Chris Lattner
2007-10-09
1
-1
/
+1
*
convert driver over to use Token::is/isNot APIs. fwew, all done.
Chris Lattner
2007-10-09
1
-10
/
+9
*
Add #ifdefs to make the source portable to windows. Patch contributed
Chris Lattner
2007-09-03
1
-1
/
+3
*
avoid std::string yet again.
Chris Lattner
2007-07-24
1
-2
/
+4
*
Use a smallstring instead of an std::string in FileChanged to avoid some mall...
Chris Lattner
2007-07-24
1
-3
/
+6
*
Fix two paste-avoidance bugs I introduced last night. Patch
Chris Lattner
2007-07-23
1
-2
/
+2
*
avoid creating std::strings in MoveToLine
Chris Lattner
2007-07-23
1
-2
/
+18
*
In OutputString, avoid calling memcpy for really tiny strings.
Chris Lattner
2007-07-23
1
-1
/
+14
*
Avoid calling getSpelling at all for identifiers, which are
Chris Lattner
2007-07-23
1
-1
/
+5
[next]