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
/
utils
Commit message (
Expand
)
Author
Age
Files
Lines
*
[analyzer] SATestBuild.py: Move additional checkers logic so SATestAdd.py can...
Devin Coughlin
2015-09-16
1
-4
/
+6
*
[analyzer] Update SATestBuild.py to set -isysroot for preprocessed files
Devin Coughlin
2015-09-14
1
-2
/
+19
*
Extend the Token visualizer used by MSVC to display the identifier text for t...
Aaron Ballman
2015-09-11
1
-7
/
+8
*
[analyzer] Apply whitespace cleanups by Honggyu Kim.
Ted Kremenek
2015-09-08
5
-160
/
+158
*
[ARM NEON] Remove special-case for f16 vcvt handling. NFCI.
Ahmed Bougacha
2015-08-22
1
-4
/
+0
*
[ARM NEON] Use the common naming scheme for vcvt f16 builtins. NFC.
Ahmed Bougacha
2015-08-21
1
-2
/
+2
*
[ARM NEON] Factor out FP-prototype checking. NFC.
Ahmed Bougacha
2015-08-21
1
-5
/
+9
*
[Static Analyzer] Made it easier to test new checkers using the test suite.
Gabor Horvath
2015-08-20
1
-0
/
+7
*
Fix memory ownership in the NeonEmitter by using values instead of pointers (...
David Blaikie
2015-08-06
1
-37
/
+30
*
Plug a memory leak in NeonEmitter: Intrinsics allocated were never released.
Yaron Keren
2015-08-06
1
-0
/
+6
*
[UB] Guard two calls to memcpy in generated attribute code to handle
Chandler Carruth
2015-08-04
1
-2
/
+4
*
Fix -Wextra-semi warnings.
Hans Wennborg
2015-07-22
1
-1
/
+1
*
Refactor TableGen backend for ClangAttrEmitter to avoid duplication.
Bob Wilson
2015-07-20
1
-89
/
+63
*
Ignore the "novtable" declspec when not using the Microsoft C++ ABI.
Bob Wilson
2015-07-20
1
-3
/
+36
*
[Static Analyzer] Make the paths relative from the project root when generati...
Gabor Horvath
2015-07-08
2
-4
/
+17
*
[TableGen] Change a couple methods to return an ArrayRef instead of a const s...
Craig Topper
2015-07-06
1
-2
/
+2
*
[Static Analyzer] No longer include the full path of the source file in the s...
Gabor Horvath
2015-07-02
1
-1
/
+1
*
[Static Analyzer] Minor improvements to SATest.
Gabor Horvath
2015-06-30
2
-20
/
+41
*
Revert r240270 ("Fixed/added namespace ending comments using clang-tidy").
Alexander Kornienko
2015-06-22
3
-3
/
+3
*
Fixed/added namespace ending comments using clang-tidy. NFC
Alexander Kornienko
2015-06-22
3
-3
/
+3
*
Check for consistent use of nullability type specifiers in a header.
Douglas Gregor
2015-06-19
1
-1
/
+2
*
[CodeGen][NEON] Emit constants for "immediate" intrinsic arguments.
Ahmed Bougacha
2015-06-04
1
-8
/
+24
*
[utils] Improvements to check_cfc.py to work better with some build systems.
Russell Gallop
2015-06-03
2
-3
/
+15
*
[utils] Add exact check to check_cfc.py dash_s_no_change.
Russell Gallop
2015-06-03
2
-6
/
+44
*
Replace push_back(Constructor(foo)) with emplace_back(foo) for non-trivial types
Benjamin Kramer
2015-05-29
4
-9
/
+7
*
Implement no_sanitize attribute.
Peter Collingbourne
2015-05-15
1
-0
/
+14
*
[TableGen] Clang changes for r235697 to stop leaking Expanders and Operators ...
Craig Topper
2015-04-24
1
-8
/
+7
*
Implement target-specific __attribute__((aligned)) value
Ulrich Weigand
2015-04-21
1
-5
/
+4
*
Remove empty non-virtual destructors or mark them =default when non-public
Benjamin Kramer
2015-04-11
1
-8
/
+0
*
Use 'override/final' instead of 'virtual' for overridden methods
Alexander Kornienko
2015-04-11
1
-15
/
+15
*
[tblgen] Use StringRef::trim
Benjamin Kramer
2015-04-10
1
-24
/
+5
*
Fix a call to std::unique to actually discard the trailing (junk) elements.
James Dennett
2015-04-06
1
-1
/
+2
*
[utils] Add Check Compile Flow Consistency tool (check_cfc.py).
Russell Gallop
2015-04-02
5
-0
/
+649
*
Devirtualize Attr and all subclasses.
Benjamin Kramer
2015-03-19
1
-12
/
+39
*
Remove many superfluous SmallString::str() calls.
Yaron Keren
2015-03-18
1
-1
/
+1
*
Make helper functions static. NFC.
Benjamin Kramer
2015-03-10
1
-1
/
+4
*
The semantic spelling enumeration should retain values to the spelling list i...
Aaron Ballman
2015-03-10
1
-1
/
+5
*
Teach raw_ostream to accept SmallString.
Yaron Keren
2015-03-10
1
-2
/
+2
*
Replace size() calls on containers with empty() calls where appropriate. NFC
Alexander Kornienko
2015-01-23
2
-3
/
+3
*
[cleanup] Re-sort the #include lines using llvm/utils/sort_includes.py
Chandler Carruth
2015-01-14
2
-4
/
+4
*
Attributes accepting an EnumArgument are allowed to pass a string literal, or...
Aaron Ballman
2014-12-19
1
-0
/
+1
*
Modify __has_attribute so that it only looks for GNU-style attributes. Remove...
Aaron Ballman
2014-12-05
1
-3
/
+0
*
Create a new 'flag_enum' attribute.
Alexis Hunt
2014-11-28
1
-1
/
+6
*
Fixing a use of stringstream to use an LLVM helper function. Drive-by fixing ...
Aaron Ballman
2014-11-17
1
-7
/
+3
*
MinGW doesn't implement std::to_string; working around it. NFC.
Aaron Ballman
2014-11-14
1
-1
/
+6
*
Complete support for the SD-6 standing document (based off N4200) with suppor...
Aaron Ballman
2014-11-14
1
-9
/
+30
*
[analyzer] Rename NewDeleteLeaks checker in the test script.
Anna Zaks
2014-10-31
1
-1
/
+1
*
Refactor tree printing in AST dumping.
Richard Smith
2014-10-30
1
-26
/
+4
*
Allow constant expressions in pragma loop hints.
Tyler Nowicki
2014-10-12
1
-4
/
+26
*
Adding some FIXMEs to the attribute emitter code regarding whether pretty pri...
Aaron Ballman
2014-09-15
1
-0
/
+6
[next]