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
/
CodeGen
/
CGExprAgg.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Rename CodeGenFunction::EmitMemSetToZero to EmitNullInitialization. Handle se...
Anders Carlsson
2010-05-21
1
-5
/
+1
*
Copy construction of non-trivial properties must not
Fariborz Jahanian
2010-05-20
1
-2
/
+1
*
Picky, picky
Douglas Gregor
2010-05-20
1
-1
/
+1
*
Fix a thinko
Douglas Gregor
2010-05-20
1
-1
/
+1
*
Assert that we do not try to memcpy a non-POD class type in C++. This
Douglas Gregor
2010-05-20
1
-1
/
+7
*
Emit an lvalue dynamic_cast even if the result is not used. Another
Douglas Gregor
2010-05-14
1
-1
/
+15
*
Remove an unused function.
Anders Carlsson
2010-05-14
1
-6
/
+0
*
If we're generating code to create a pointer-to-member function
Douglas Gregor
2010-05-03
1
-0
/
+6
*
When computing the address of a virtual member function pointer, use the poin...
Anders Carlsson
2010-05-03
1
-1
/
+6
*
Don't copy or initialize empty classes. Fixes PR7012.
Anders Carlsson
2010-05-03
1
-0
/
+8
*
Get rid of the old GetNonVirtualBaseClassOffset and change all call sites to ...
Anders Carlsson
2010-04-24
1
-1
/
+1
*
Vtable -> VTable renames across the board.
Anders Carlsson
2010-04-17
1
-1
/
+1
*
Reapply patch for adding support for address spaces and added a isVolatile fi...
Mon P Wang
2010-04-04
1
-4
/
+19
*
Revert r100193 since it causes failures in objc in clang
Mon P Wang
2010-04-02
1
-19
/
+4
*
Reapply patch for adding support for address spaces and added a isVolatile fi...
Mon P Wang
2010-04-02
1
-4
/
+19
*
Revert Mon Ping's 99930 due to broken llvm-gcc buildbots.
Bob Wilson
2010-03-30
1
-19
/
+4
*
Added support for address spaces and added a isVolatile field to memcpy, memm...
Mon P Wang
2010-03-30
1
-4
/
+19
*
Rename CGVtableInfo to CodeGenVTables in preparation of adding another VTable...
Anders Carlsson
2010-03-23
1
-2
/
+1
*
Fix PR6648 by not creating a temporary with the type of a
Rafael Espindola
2010-03-21
1
-4
/
+0
*
add a codegen hack to work around an AST bug, allowing us to compile the
Chris Lattner
2010-03-08
1
-2
/
+12
*
Perform overload resolution when static_cast'ing from a
Douglas Gregor
2010-03-07
1
-0
/
+10
*
PR6386: Fix a recent regression in IRGen of cast-to-union constructs.
Eli Friedman
2010-02-23
1
-1
/
+1
*
IRgen: Add CreateMemTemp, for creating an temporary memory object for a parti...
Daniel Dunbar
2010-02-09
1
-11
/
+10
*
Use the right type when taking the address of a non-virtual member function p...
Anders Carlsson
2010-02-07
1
-2
/
+6
*
IRgen: Factor out EmitAggExprToLValue.
Daniel Dunbar
2010-02-05
1
-0
/
+10
*
Rename StartConditionalBranch/FinishConditionalBranch to BeginConditionalBran...
Anders Carlsson
2010-02-04
1
-4
/
+4
*
Calculate offset correctly when taking the address of a virtual member function.
Anders Carlsson
2010-02-04
1
-1
/
+5
*
Handle reference binding in aggregate initializers. Fixes another 47 tests.
Anders Carlsson
2010-02-03
1
-5
/
+5
*
Add a band-aid fix for clang self-hosting. A better fix will follow shortly.
Anders Carlsson
2010-02-03
1
-0
/
+3
*
More cleanup.
Anders Carlsson
2010-02-03
1
-10
/
+14
*
Some class related cleanup.
Anders Carlsson
2010-01-31
1
-2
/
+2
*
Simplify EmitLValueForField - we can get whether the field is part of a union...
Anders Carlsson
2010-01-29
1
-2
/
+2
*
When emitting member function pointers, use the canonical decl if the member ...
Anders Carlsson
2010-01-05
1
-1
/
+2
*
Revert r92431, this code isn't dead and broke the ntfs build.
Daniel Dunbar
2010-01-04
1
-0
/
+1
*
Delete impossible case.
Eli Friedman
2010-01-02
1
-1
/
+0
*
Minor optimization; emit proper unsupported messages for a couple of cases.
Eli Friedman
2009-12-25
1
-2
/
+6
*
Fill in the return value slot in CGExprAgg::VisitCallExpr. This takes us half...
Anders Carlsson
2009-12-24
1
-0
/
+7
*
Handle case when DestPtr is 0.
Mike Stump
2009-12-18
1
-3
/
+22
*
When value-initializing a class with no user-defined constructors but
Douglas Gregor
2009-12-16
1
-0
/
+5
*
Handle ImplicitValueInitExpr in AggExprEmitter.
Anders Carlsson
2009-12-16
1
-2
/
+8
*
Add throw support. WIP.
Mike Stump
2009-12-09
1
-1
/
+1
*
Update chunk of #if 0'ed code to remove fixed FIXME and make it compile. We
Eli Friedman
2009-12-04
1
-11
/
+6
*
Remove remaining VISIBILITY_HIDDEN from anonymous namespaces.
Benjamin Kramer
2009-11-28
1
-2
/
+1
*
Add case for CK_DerivedToBaseMemberPointer cast kind to
Eli Friedman
2009-11-27
1
-6
/
+13
*
Fix lifetime of conditional temporaries. Patch by Victor Zverovich!
Anders Carlsson
2009-11-20
1
-4
/
+4
*
Fix one last gotcha with typeid.
Mike Stump
2009-11-18
1
-0
/
+1
*
Add Code gen support for '->*' operator which fell
Fariborz Jahanian
2009-10-26
1
-1
/
+2
*
Eliminate QualifiedDeclRefExpr, which captured the notion of a
Douglas Gregor
2009-10-23
1
-1
/
+1
*
Complete code gen for '.*' binary expression for
Fariborz Jahanian
2009-10-22
1
-1
/
+11
*
Use CK_BitCast for member function pointer casts. Fixes PR5138.
Anders Carlsson
2009-10-18
1
-0
/
+6
[prev]
[next]