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
/
Sema
/
SemaExpr.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix the starting location of the Fix-It note for suspicious precedence
Douglas Gregor
2011-06-22
1
-1
/
+2
*
Revert r133526 which re-orders the suggestions for -Wparentheses on ?:
Chandler Carruth
2011-06-21
1
-4
/
+4
*
Switch the order of the notes for the parentheses suggested in the case
Chandler Carruth
2011-06-21
1
-4
/
+4
*
Make more use of llvm::StringRef in various APIs. In particular, don't
Jay Foad
2011-06-21
1
-1
/
+0
*
Warn for un-parenthesized '&' inside '|' (a & b | c), rdar://9553326.
Argyrios Kyrtzidis
2011-06-20
1
-1
/
+30
*
Fix a problem with the diagnostics of invalid arithmetic with function
Chandler Carruth
2011-06-20
1
-2
/
+2
*
Move away from the poor "abstraction" I added to Type. John argued
Chandler Carruth
2011-06-20
1
-24
/
+32
*
Restructure the API in Type based on a conversation with Richard Smith.
Chandler Carruth
2011-06-20
1
-1
/
+4
*
Add test cases for false positives on -Wnull-arithmetic from Richard
Chandler Carruth
2011-06-19
1
-25
/
+8
*
Add a minor hack to avoid using isNullPointerConstant on a hot path. Fixes -...
Eli Friedman
2011-06-17
1
-6
/
+5
*
Don't emit 'unavailable' errors inside an unavailable function. rdar://9623855.
Argyrios Kyrtzidis
2011-06-17
1
-12
/
+14
*
Objective-C fast enumeration loop variables are not retained in ARC, but
John McCall
2011-06-17
1
-10
/
+13
*
Implement proper support for generating code for compound literals in
Douglas Gregor
2011-06-17
1
-2
/
+3
*
Check for placeholder expressions before promoting an argument passed
Douglas Gregor
2011-06-17
1
-1
/
+5
*
Add a new warning when a NULL constant is used in arithmetic operations. The...
Richard Trieu
2011-06-16
1
-0
/
+54
*
Allow comparison between block pointers and NULL pointer
Douglas Gregor
2011-06-16
1
-2
/
+4
*
arc: diagnose dereferencing a __weak pointer which may be
Fariborz Jahanian
2011-06-16
1
-0
/
+10
*
Refactor parentheses suggestion notes to have less code duplication and
Chandler Carruth
2011-06-16
1
-63
/
+36
*
Cleanup the parameter naming style.
Chandler Carruth
2011-06-16
1
-8
/
+8
*
Automatic Reference Counting.
John McCall
2011-06-15
1
-32
/
+197
*
Warn on "void f(int a[10]) { sizeof(a); }"
Nico Weber
2011-06-15
1
-0
/
+14
*
Sema: show shift result in hexadecimal
Ted Kremenek
2011-06-15
1
-3
/
+8
*
Properly diagnose using abstract and incomplete types in va_arg
David Majnemer
2011-06-14
1
-5
/
+17
*
Give a diagnostic when using non-POD types in a va_arg
David Majnemer
2011-06-13
1
-1
/
+5
*
Implement support for C++11 in-class initialization of non-static data members.
Richard Smith
2011-06-11
1
-13
/
+23
*
Implement Objective-C Related Result Type semantics.
Douglas Gregor
2011-06-11
1
-8
/
+31
*
Handle overloaded operators in ?: precedence warning
Hans Wennborg
2011-06-09
1
-38
/
+78
*
Modify a diagnostic introduced in r132612 to emit QualTypes directly
Peter Collingbourne
2011-06-08
1
-2
/
+2
*
Add support for builtin astype:
Tanya Lattner
2011-06-04
1
-0
/
+20
*
Warn about missing parentheses for conditional operator.
Hans Wennborg
2011-06-03
1
-39
/
+107
*
Implement comparisons between nullptr and Objective-C object
Douglas Gregor
2011-06-01
1
-2
/
+2
*
Expand the coverage of the warning for constants on the RHS of logical operands:
Chandler Carruth
2011-05-31
1
-6
/
+8
*
Fix a regression in the source locations for unary trait expressions.
Chandler Carruth
2011-05-29
1
-10
/
+5
*
Enhance Clang to start instantiating static data member definitions
Chandler Carruth
2011-05-27
1
-6
/
+38
*
Extract two more methods from the unary type trait checking. These
Chandler Carruth
2011-05-26
1
-19
/
+41
*
Remove a no longer relevant comment. It was just repeating the
Chandler Carruth
2011-05-26
1
-2
/
+1
*
Extract the vec_step trait operand checking to a stand alone function.
Chandler Carruth
2011-05-26
1
-15
/
+21
*
Add a convenience interface for checking expression arguments to unary
Chandler Carruth
2011-05-26
1
-25
/
+48
*
Fix our handling of the warning when one tries to pass a
Douglas Gregor
2011-05-21
1
-7
/
+27
*
Implement C++0x semantics for passing non-POD classes through varargs.
Douglas Gregor
2011-05-21
1
-5
/
+25
*
Make sure we actually generate defaulted copy constructors; caught by
Alexis Hunt
2011-05-14
1
-1
/
+1
*
What I hope to be an implementation of defaulted copy assignment
Alexis Hunt
2011-05-14
1
-1
/
+1
*
Defaulting copy constructors now works reasonably well.
Alexis Hunt
2011-05-13
1
-3
/
+2
*
Hrm
Alexis Hunt
2011-05-12
1
-1
/
+1
*
Make it so that we actually generate definitions for explicitly
Alexis Hunt
2011-05-12
1
-2
/
+2
*
Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and
Alexis Hunt
2011-05-09
1
-1
/
+1
*
Implement Sema::isExprCallable.
Matt Beaumont-Gay
2011-05-04
1
-107
/
+39
*
Add a warning for when reinterpret_cast leads to undefined behavior, patch by...
Argyrios Kyrtzidis
2011-05-02
1
-1
/
+7
*
Add a decl update when a static data member of a class template is instantiat...
Sebastian Redl
2011-04-29
1
-0
/
+4
*
When block-capturing a variable with a non-trivial destructor,
John McCall
2011-04-28
1
-2
/
+12
[next]