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
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Add tests for MS inline asm change r203146
Reid Kleckner
2014-03-06
2
-0
/
+41
*
MS ABI: Fix the initializer/finalizer mangling for static data members
David Majnemer
2014-03-06
2
-4
/
+8
*
Very minor simplification and typo correction; no functional changes intended.
Aaron Ballman
2014-03-06
1
-14
/
+3
*
Revert "Use private linkage for remaining GlobalVariables with private names."
Rafael Espindola
2014-03-06
4
-18
/
+18
*
Fix use-after-free detected by ASan bootstrap.
Richard Smith
2014-03-06
1
-2
/
+7
*
Run -fprofile-instr tests with %clang_cc1.
Bob Wilson
2014-03-06
2
-4
/
+4
*
Expand documentation section on comment parsing
Dmitri Gribenko
2014-03-06
1
-1
/
+26
*
[ASTPrinter] 'SEL' isn't a ObjCObjectPointer, so we don't need to handle it i...
Argyrios Kyrtzidis
2014-03-06
1
-4
/
+3
*
Fix operator<< recognition (PR19064).
Alexander Kornienko
2014-03-06
2
-2
/
+9
*
[C++11] Adding override specifiers where appropriate, and removing virtual sp...
Aaron Ballman
2014-03-06
1
-105
/
+101
*
Reformatting the style used within the massive attribute semantic handling sw...
Aaron Ballman
2014-03-06
1
-115
/
+245
*
Added an inserter for ArrayRef<SourceRange>.
Alexander Kornienko
2014-03-06
2
-16
/
+16
*
[OPENMP] Updated comments and _OPENMP macro value for OpenMP 4.0 (for 'omp si...
Alexey Bataev
2014-03-06
4
-7
/
+12
*
[OPENMP] Missed test for 'simd private'
Alexey Bataev
2014-03-06
1
-0
/
+134
*
[-Wunreachable-code] Refine treating all branches of 'switch' as reachable, w...
Ted Kremenek
2014-03-06
2
-18
/
+15
*
CodeGenObjC/instr-profile.m: Add -target darwin to appease bots.
NAKAMURA Takumi
2014-03-06
1
-2
/
+2
*
[-Wunreachable-code] don't warn about dead 'return <string literal>' dominate...
Ted Kremenek
2014-03-06
2
-2
/
+73
*
Attempt to fix buildbots by dropping the -LABEL from some FileCheck patterns.
Bob Wilson
2014-03-06
1
-2
/
+2
*
[OPENMP] Clause 'num_threads'
Alexey Bataev
2014-03-06
17
-17
/
+298
*
PGO: add instrumentation for Objective-C methods.
Bob Wilson
2014-03-06
4
-8
/
+58
*
[OPENMP] Added option -fopenmp=libiomp5|libgomp
Alexey Bataev
2014-03-06
17
-34
/
+134
*
Remove 'break' dominated by 'return' in 'EmitBuiltinExpr'.
Ted Kremenek
2014-03-06
1
-1
/
+0
*
Remove 2 dead 'break' statements. The 'break' usage in this switch is incons...
Ted Kremenek
2014-03-06
1
-2
/
+0
*
Remove dead return in Parser::MayBeDesignationStart().
Ted Kremenek
2014-03-06
1
-2
/
+0
*
Remove dead return in BugReporter (found via -Wunreachable-code).
Ted Kremenek
2014-03-06
1
-4
/
+2
*
PGO: Use the main file name to help distinguish functions with local linkage.
Bob Wilson
2014-03-06
5
-23
/
+73
*
PGO: Rename variables to avoid referring to the "MangledName" of a function.
Bob Wilson
2014-03-06
2
-19
/
+18
*
Refactor PGO code in preparation for handling non-C/C++ code.
Bob Wilson
2014-03-06
3
-12
/
+11
*
PGO: don't emit counter increment if no counters have been allocated.
Bob Wilson
2014-03-06
1
-1
/
+1
*
[Layering] Update include of Linker.h to match its move to a Linker
Chandler Carruth
2014-03-06
1
-1
/
+1
*
Fix crash if a submodule overrides one of its own macros, and add support for
Richard Smith
2014-03-06
7
-3
/
+31
*
Fix test from r203061
Richard Trieu
2014-03-06
1
-3
/
+3
*
Suppress diagnostics during name lookup for absolute value type.
Richard Trieu
2014-03-06
2
-0
/
+14
*
Use private linkage for remaining GlobalVariables with private names.
Rafael Espindola
2014-03-06
4
-18
/
+18
*
Update clang test to cover for new treatment of intrinsics as readnone.
Raul E. Silvera
2014-03-06
1
-4
/
+4
*
Construct GlobalValues with the correct linkage instead of using setLinkage.
Rafael Espindola
2014-03-06
1
-8
/
+7
*
[-Wunreachable-code] Handle idiomatic do...while() with an uninteresting cond...
Ted Kremenek
2014-03-06
3
-10
/
+20
*
Change the color of comment nodes from bright yellow to blue. Bright yellow on
Richard Trieu
2014-03-06
2
-20
/
+31
*
[Layering] Update include of DebugInfo.h which moved to the IR library
Chandler Carruth
2014-03-06
1
-1
/
+1
*
Objective-C properties. Fixes a crash in Sema where RHS of
Fariborz Jahanian
2014-03-06
2
-4
/
+60
*
Switch to an idiomatic C++ erase/remove for this loop, and fix a bug in the
Richard Smith
2014-03-06
1
-3
/
+5
*
[Layering] Update include for the move of DIBuilder.h to the IR library
Chandler Carruth
2014-03-06
1
-1
/
+1
*
[-Wunreachable-code] Handle idiomatic do...while() with an uninteresting cond...
Ted Kremenek
2014-03-06
2
-9
/
+41
*
clang/test/Modules/recursive.c: Tweak expressions for win32.
NAKAMURA Takumi
2014-03-06
1
-2
/
+2
*
[-Wunreachable-code] generalize pruning out warning on trivial returns.
Ted Kremenek
2014-03-05
2
-10
/
+28
*
Objective-C. Suppress the warning for auto synthesis of property not
Fariborz Jahanian
2014-03-05
2
-4
/
+60
*
[-Wunreachabe-code] add test for double 'break'.
Ted Kremenek
2014-03-05
1
-0
/
+1
*
[-Wunreachable-code] include some enum constants in "configuration value" heu...
Ted Kremenek
2014-03-05
2
-0
/
+23
*
PR19010: Make sure we initialize (empty) indirect base class subobjects when
Richard Smith
2014-03-05
2
-23
/
+22
*
Fix recursion bug in logic to validate 'objc_protocol_requires_explicit_imple...
Ted Kremenek
2014-03-05
2
-6
/
+16
[prev]
[next]