Age | Commit message (Expand) | Author |
2011-04-19 | ADT/Triple: Switch to using .isOSDarwin() predicate. | Daniel Dunbar |
2011-04-19 | use the newly introduced IRBuilder getInt() method to reduce some | Chris Lattner |
2011-04-18 | Fix typo in comment. | Devang Patel |
2011-04-18 | Get rid of std::vector usage when getting function types in CGException.cpp | Anders Carlsson |
2011-04-18 | Clean up code generation of typeid expressions and add C++ standard references. | Anders Carlsson |
2011-04-17 | Fix a miscompilation I introduced in r129652, thanks for Eli for tracking | Chris Lattner |
2011-04-17 | When laying out bases in, always try the "base subobject" LLVM type. If it | Anders Carlsson |
2011-04-17 | Add addBaseSubobjectTypeName which isn't used yet. | Anders Carlsson |
2011-04-17 | Move code to add a type name to a TagDecl type out into a helper function. No... | Anders Carlsson |
2011-04-17 | Use a SmallVector for field types in CGRecordLayoutBuilder now that llvm::Str... | Anders Carlsson |
2011-04-17 | Hack to turn the valgrind buildbot green, until Devang can address it | Eli Friedman |
2011-04-17 | implement rdar://9289524 - case followed immediately by break results in empt... | Chris Lattner |
2011-04-17 | fold memcpy/set/move_chk to llvm.memcpy/set/move when the sizes | Chris Lattner |
2011-04-16 | fix rdar://9289603 - clang should fold trivial ?: for enums as well as intege... | Chris Lattner |
2011-04-16 | Emit proper selector name in debug info. | Devang Patel |
2011-04-16 | Emit debug info for Objective-C properties. | Devang Patel |
2011-04-15 | Add 3DNow! Intrinsics. | Michael J. Spencer |
2011-04-15 | Support for C++11 (non-template) alias declarations. | Richard Smith |
2011-04-15 | fix a bunch of comment typos found by codespell. Patch by | Chris Lattner |
2011-04-15 | C1X: implement generic selections | Peter Collingbourne |
2011-04-14 | Add support for C++0x's range-based for loops, as specified by the C++11 draf... | Richard Smith |
2011-04-14 | Implement ARM pcs attribute. Basically it's another way of calling convention... | Anton Korobeynikov |
2011-04-14 | Replace a couple of divide-by-8s with divide-by-charwidths. No change in | Ken Dyck |
2011-04-14 | Replace a couple of divisions-by-'8' with divisions-by-charwidth. No change | Ken Dyck |
2011-04-13 | Removing the unaligned load tests from builtins-x86.c since they're generated... | Bill Wendling |
2011-04-13 | It looks like the FreeBSD buildbot needs this for the builtins-x86.c test. | Bill Wendling |
2011-04-13 | Just use a native "load" instead of translating the builtin later. Clang can | Bill Wendling |
2011-04-13 | Use EmitCallOrInvoke in EmitBadTypeidCall and EmitBadCastCall. | Anders Carlsson |
2011-04-13 | Convert the unaligned load builtins to the first-class versions. | Bill Wendling |
2011-04-12 | IRgen/Obj-C: Emit CFStrings and NSStrings with the alignment of the char type, | Daniel Dunbar |
2011-04-12 | We can't emit an aggregate cast as its sub-expression in general just | John McCall |
2011-04-12 | Template static data members can have weak_odr linkage, not just | John McCall |
2011-04-12 | Ignore indirect field declarations. Fixes PR9570. | John McCall |
2011-04-12 | After some discussion with Doug, we decided that it made a lot more sense | John McCall |
2011-04-11 | If there's an invoke destination, we should use invoke instead of call when c... | Anders Carlsson |
2011-04-11 | More __unknown_anytype work. | John McCall |
2011-04-11 | Remove CK_DynamicToNull. | Anders Carlsson |
2011-04-11 | When we know that a dynamic_cast always returns null, we can make | Anders Carlsson |
2011-04-11 | Clean up CodeGenFunction::EmitDynamicCast. No functionality change. | Anders Carlsson |
2011-04-11 | Replace a couple of Builder.CreateICmpEQ with Builder.CreateIsNull. No functi... | Anders Carlsson |
2011-04-10 | As a first step towards fixing PR9641, add a CK_DynamicToNull cast kind which | Anders Carlsson |
2011-04-10 | Strip off parens and no-op casts when deciding if an expr can be devirtualize... | Anders Carlsson |
2011-04-10 | Change CollectPrimaryBases to collect the bases in the right order. Fixes one... | Anders Carlsson |
2011-04-10 | Make -fdump-vtable-layouts also dump vtable indices for all virtual member fu... | Anders Carlsson |
2011-04-10 | PR9580: Handle vectors correctly in ScalarExprEmitter::EmitRem. | Eli Friedman |
2011-04-09 | Make sure we or together the overflow flags of the multiply and add, so the | Eli Friedman |
2011-04-09 | PR8369: make __attribute((regparm(0))) work correctly. Original patch by | Eli Friedman |
2011-04-09 | fix indentation | Chris Lattner |
2011-04-09 | add a __sync_swap builtin to fill out the rest of the __sync builtins. | Chris Lattner |
2011-04-09 | Convert the PointerWidthInBytes variable in EmitMemberPointer() to CharUnits | Ken Dyck |