Age | Commit message (Expand) | Author |
2010-08-26 | improve comments. | Chris Lattner |
2010-08-26 | fix 2xi16 to pass as i32 instead of <2 x i16>. The former passes in | Chris Lattner |
2010-08-26 | vector of long and ulong are also classified as INTEGER in x86-64 abi, | Chris Lattner |
2010-08-26 | 1 x ulonglong needs to be classified as INTEGER, just like 1 x longlong, | Chris Lattner |
2010-08-26 | Fix miscompilation. The cookie was not used when new'ing arrays with multiple... | Argyrios Kyrtzidis |
2010-08-26 | tame an assertion, fixing rdar://8357396 | Chris Lattner |
2010-08-26 | CGValue: Increase width of allowed alignment. We could switch to log2, but we | Daniel Dunbar |
2010-08-26 | De-memberify the VarDecl and FunctionDecl StorageClass enums. | John McCall |
2010-08-26 | IRgen/NEON: Fix codegen of vzip and vzipq. | Daniel Dunbar |
2010-08-25 | Finally pass "two floats in a 64-bit unit" as a <2 x float> instead of | Chris Lattner |
2010-08-25 | Fix horrible white space errors. | Michael J. Spencer |
2010-08-25 | GCC didn't care for my attempt at API compatibility, so brute-force everything | John McCall |
2010-08-25 | More incremental progress towards not including Expr.h in Sema.h. | John McCall |
2010-08-25 | IRgen: Fix a horrible bug in pointer to bool conversion, which we were treating | Daniel Dunbar |
2010-08-25 | Expression statements undergo lvalue-to-rvalue conversion in C, | John McCall |
2010-08-25 | Fix 'for' loop variables' scope. | Devang Patel |
2010-08-24 | Fix enum size and align. Tested by setvar.exp in gdb testsuite. | Devang Patel |
2010-08-24 | Debug Info: Put full Clang version into the debug info, to make it easier to | Daniel Dunbar |
2010-08-23 | Emit debug info for enum constants. | Devang Patel |
2010-08-23 | Reinstate the code for emitting an initial debug type for a struct, | Dan Gohman |
2010-08-23 | Support for IRGen of synthesize bitfield ivars in | Fariborz Jahanian |
2010-08-23 | Emit an error noting that Clang does not support code generation for | Douglas Gregor |
2010-08-23 | chandlerc pointed out that ending a line with /\ is not very friendly. :) | John McCall |
2010-08-23 | fix rdar://8340348, a miscompile of boost that was exposed by r109848. | Chris Lattner |
2010-08-23 | Abstract out everything having to do with member pointers into the ABI | John McCall |
2010-08-23 | Extract a method to check whether a function is the global placement | John McCall |
2010-08-22 | Go back to asking CodeGenTypes whether a type is zero-initializable. | John McCall |
2010-08-22 | Eliminate a stale assertion. Fixes Clang self-host. | Douglas Gregor |
2010-08-22 | When performing value-initialization for a class with a non-trivial, | Douglas Gregor |
2010-08-22 | Clean up a very silly use of first-class aggregates. | John McCall |
2010-08-22 | Experiment with using first-class aggregates to represent member function | John McCall |
2010-08-22 | Extract member function pointer comparison and null comparison into | John McCall |
2010-08-22 | Abstract out member-pointer creation. I'm really unhappy about the current | John McCall |
2010-08-22 | Abstract more member-pointerness out. | John McCall |
2010-08-22 | Abstract out member-pointer conversions. | John McCall |
2010-08-22 | Detabify. | Eli Friedman |
2010-08-22 | Implement the call parts of the member-function-pointer ARM C++ ABI. | John McCall |
2010-08-22 | Extract calls to method pointers out as an ABI routine. | John McCall |
2010-08-21 | The ARM C++ ABI is sufficiently different from the Itanium C++ ABI that | John McCall |
2010-08-21 | IRgen: Set the alignment correctly when creating LValue for a decls. | Daniel Dunbar |
2010-08-21 | CodeGenFunction: Eliminate unused MakeQualifiers() function. | Daniel Dunbar |
2010-08-21 | Simplify. | Daniel Dunbar |
2010-08-21 | IRgen/CGValue: Give MakeAddrLValue() an alignment argument, and eliminate old... | Daniel Dunbar |
2010-08-21 | IRgen: Move remaining LValue::Set... methods to LValue::set... (non-static) m... | Daniel Dunbar |
2010-08-21 | IRgen: Move remaining MakeAddr() calls to MakeAddrLValue(). | Daniel Dunbar |
2010-08-21 | IRgen: The CVR qualifiers in a subobject adjustment should just come from the | Daniel Dunbar |
2010-08-21 | IRgen/CGValue: Add getQuals(), so qualifiers can be modified on an LValue. | Daniel Dunbar |
2010-08-21 | IRgen/LValue: Add LValue::setNonGC instead of SetObjCNonGC, for consistency w... | Daniel Dunbar |
2010-08-21 | IRgen: Switch more MakeAddr() users to MakeAddrLValue; this time for calls wh... | Daniel Dunbar |
2010-08-21 | IRgen: Switch a bunch of trivial MakeAddr calls to use MakeAddrLValue. | Daniel Dunbar |