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
/
Sema
/
SemaExpr.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Move promoteExprToType from being a static method in SemaExpr.cpp to being
Chris Lattner
2008-01-16
1
-45
/
+37
*
Finish up handling all permutations of "complex int" (in Sema::UsualArithmeti...
Steve Naroff
2008-01-15
1
-5
/
+9
*
- Change Type::isComplexType() to exlude GCC's complex integer extension. In ...
Steve Naroff
2008-01-15
1
-17
/
+28
*
Rework commit r45976, which was incorrect.
Steve Naroff
2008-01-15
1
-4
/
+17
*
Record if a compound literal expression is @ file scope. This allows us to im...
Steve Naroff
2008-01-14
1
-4
/
+5
*
Change Sema::CheckAddressOfOperation() to respect C99-only addressof rules.
Steve Naroff
2008-01-13
1
-13
/
+17
*
allow __func__ in objc methods.
Chris Lattner
2008-01-12
1
-4
/
+8
*
Tighten up handling of __func__ and friends: it should be an array
Chris Lattner
2008-01-12
1
-13
/
+11
*
Fix the type of predefined identifiers like __func__. Patch by
Chris Lattner
2008-01-12
1
-2
/
+7
*
- Teach Expr::isConstantExpr() about InitListExpr's (and offsetof, since I no...
Steve Naroff
2008-01-10
1
-3
/
+6
*
Teach Sema::ActOnCompoundLiteral about constraint C99 6.5.2.5p3.
Steve Naroff
2008-01-09
1
-2
/
+3
*
Fix Sema::CheckConditionalOperands(). The null pointer constant checks need t...
Steve Naroff
2008-01-08
1
-13
/
+11
*
Substituted all instances of the string "Objc" for "ObjC". This fixes
Ted Kremenek
2008-01-07
1
-17
/
+17
*
minor cleanup.
Chris Lattner
2008-01-07
1
-2
/
+1
*
rearrange some code.
Chris Lattner
2008-01-06
1
-11
/
+16
*
some simplifications/cleanups to ?: sema.
Chris Lattner
2008-01-06
1
-14
/
+21
*
Emit warnings like "dereferencing void pointer" instead of trying to
Chris Lattner
2008-01-06
1
-3
/
+2
*
unnest vector handling again.
Chris Lattner
2008-01-04
1
-23
/
+23
*
we already test for exact type matches early, so we don't have to do
Chris Lattner
2008-01-04
1
-16
/
+13
*
simplify some of this code by removing the else/if chain and by
Chris Lattner
2008-01-04
1
-8
/
+25
*
move objc expr sema to its own file.
Chris Lattner
2008-01-04
1
-280
/
+0
*
add comments for the various AssignConvertType's, and split int->pointer from...
Chris Lattner
2008-01-04
1
-5
/
+6
*
Merge all the 'assignment' diagnostic code into one routine, decloning
Chris Lattner
2008-01-04
1
-171
/
+97
*
Patch to add semantics check for ObjC2's foreacn statement.
Fariborz Jahanian
2008-01-04
1
-2
/
+1
*
generalize some of the conversion warnings.
Chris Lattner
2008-01-03
1
-15
/
+12
*
regroup assignment-related diagnostics, fix a mistake in one.
Chris Lattner
2008-01-03
1
-1
/
+1
*
give better diagnostics for converting between function pointer and void*.
Chris Lattner
2008-01-03
1
-9
/
+36
*
Remove cause of misc. "variable might be used uninitialized in this function"...
Fariborz Jahanian
2008-01-03
1
-4
/
+5
*
Fixed a bug reported by Chris, involving assiging 0 to a qualified object type.
Fariborz Jahanian
2008-01-03
1
-1
/
+2
*
Compute the proper sourcerange for an CompoundLiteralExpr.
Chris Lattner
2008-01-02
1
-2
/
+2
*
Allow implicit casts during arithmetic for OCUVector operations
Nate Begeman
2007-12-30
1
-5
/
+26
*
Allow splat casts for OCU vector assignments & add some comments.
Nate Begeman
2007-12-30
1
-0
/
+8
*
Don't attribute in file headers anymore. See llvmdev for the
Chris Lattner
2007-12-29
1
-2
/
+2
*
Change Sema::ActOnCallExpr to construct the CallExpr early and put it into
Chris Lattner
2007-12-28
1
-97
/
+99
*
More objective-c type analysis. This time involving objective types
Fariborz Jahanian
2007-12-21
1
-1
/
+1
*
More objective-c typechecking stuff. This is work in progress and more patches
Fariborz Jahanian
2007-12-20
1
-0
/
+5
*
Implement codegen for ordered comparison builtins.
Chris Lattner
2007-12-20
1
-2
/
+1
*
implement semantic analysis for __builtin_islessequal and friends.
Chris Lattner
2007-12-20
1
-2
/
+2
*
simplify some code.
Chris Lattner
2007-12-20
1
-1
/
+6
*
refactor some code that handles sema of direct function calls.
Chris Lattner
2007-12-19
1
-2
/
+1
*
Various tweaks to the get/lookup instance/class method API's.
Steve Naroff
2007-12-19
1
-1
/
+1
*
This patch concludes implementation of dynamic objective-c type qualified by
Fariborz Jahanian
2007-12-19
1
-1
/
+9
*
Add DefaultFunctionArrayConversion() to the indirection operator in Sema::Act...
Steve Naroff
2007-12-18
1
-0
/
+1
*
Improve how we find private method decls. This involved:
Steve Naroff
2007-12-18
1
-17
/
+2
*
Patch to implemented objective-c's dynamic object pointer qualified with
Fariborz Jahanian
2007-12-17
1
-5
/
+25
*
Sema::ActOnMemberReferenceExpr() needs to perform the default conversions.
Steve Naroff
2007-12-16
1
-0
/
+3
*
Patch to make ObjcQualifiedInterfaceType inherit ObjcInterfaceType
Fariborz Jahanian
2007-12-13
1
-5
/
+2
*
Don't do integer promotions of LHS for compound shift assignment. The LHS ha...
Chris Lattner
2007-12-13
1
-1
/
+2
*
Concatenation of objc strings.
Fariborz Jahanian
2007-12-12
1
-3
/
+22
*
TargetInfo no longer includes a reference to SourceManager.
Ted Kremenek
2007-12-12
1
-4
/
+9
[next]