Age | Commit message (Expand) | Author |
2009-10-22 | fix PR5265: the size of a float3 should be rounded up to its alignment. | Chris Lattner |
2009-10-21 | Downgrade "function declared 'noreturn' should not return" from an | Douglas Gregor |
2009-10-20 | Implement PR5242: don't desugar a type more than once in a diagnostic. This | Chris Lattner |
2009-10-17 | teach getCorrespondingUnsignedType how to handle vectors of integers, | Chris Lattner |
2009-10-16 | Implement PR4407 - missing warnings on case value overflow, | Chris Lattner |
2009-10-13 | add rdar # I accidentally lost. | Chris Lattner |
2009-10-13 | merge two tests. | Chris Lattner |
2009-10-13 | make the diagnostic in the 'unused result' warning more precise | Chris Lattner |
2009-10-09 | Add CheckCallReturnType and start using it for regular call expressions. This... | Anders Carlsson |
2009-10-08 | Implement support for -Wunused-variable, from Oscar Bonilla! | Douglas Gregor |
2009-09-30 | Add an error for function parameters that have a qualified address space sinc... | Tanya Lattner |
2009-09-28 | Provide a custom diagnostic when code tries to use an unknown builtin | Douglas Gregor |
2009-09-26 | builtin_trap should be noreturn, this fixes PR5062, patch by | Chris Lattner |
2009-09-26 | Add a "positive" matching test case for attribute 'noreturn' that involves a ... | Ted Kremenek |
2009-09-26 | Add two more test cases for attribute 'noreturn'. | Ted Kremenek |
2009-09-24 | Refactor the representation of qualifiers to bring ExtQualType out of the | John McCall |
2009-09-23 | implement support for __builtin_eh_return_data_regno on x86-32 and x86-64. | Chris Lattner |
2009-09-22 | In C++, a variadic function does not need an ellipsis prior to the comma. Par... | Douglas Gregor |
2009-09-21 | Implement __builtin_unreachable(), a GCC 4.5 extension. | Chris Lattner |
2009-09-18 | Attempt to make a test portable. | Daniel Dunbar |
2009-09-18 | Make our char vector types not be explicitly signed to match GCC and to fix c... | Anders Carlsson |
2009-09-17 | clang-cc: Remove -ObjC -ObjC++ handling from clang-cc. | Daniel Dunbar |
2009-09-16 | Some people don't want to fix their broken code just yet, so turn off | Mike Stump |
2009-09-14 | Update tests | Anders Carlsson |
2009-09-14 | -Wchar-subscripts should not warn for explicit signed char subscripts either.... | Sam Weinig |
2009-09-14 | -Wchar-subscripts should not warn for unsigned char subscripts. Fixes PR4978. | Sam Weinig |
2009-09-14 | Add support for -Wchar-subscripts. Fixes PR4801. | Sam Weinig |
2009-09-14 | ARM target tweaks. | Daniel Dunbar |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |
2009-09-08 | reject returning a block expr even when it has parens and casts in the way. | Chris Lattner |
2009-08-31 | PR4836, part 1: add Sema support for __builtin_isnan and friends; they | Eli Friedman |
2009-08-27 | Remove unnecessary include. | Eli Friedman |
2009-08-27 | Cleanups. | Mike Stump |
2009-08-26 | Fix bug in __extension__ handling for declarations, from Abramo | Douglas Gregor |
2009-08-23 | Catch a few more cases of illegal comparisons. | Eli Friedman |
2009-08-23 | Eli points out that we really must diagnose "void* > 0" as an extension. | Chris Lattner |
2009-08-22 | tweak some pointer sema checking stuff (which was added to implement PR4175) to | Chris Lattner |
2009-08-20 | Fix bit-field promotion to be a bit closer to the behavior of gcc. | Eli Friedman |
2009-08-19 | Make integer promotions work correctly on PIC16 and other platforms | Eli Friedman |
2009-08-15 | Don't perform integer promotions on the operand to a cast; this | Eli Friedman |
2009-08-15 | Make test more precise. | Eli Friedman |
2009-08-15 | Disable all recognition of main() in -ffreestanding. Addresses bug #4720. | John McCall |
2009-08-15 | Change handling of attribute 'malloc' to only accept the attribute on function | Ted Kremenek |
2009-08-14 | Add more attribute 'malloc' test cases involving function pointers. | Ted Kremenek |
2009-08-14 | Per Eli Friedman's feedback, handle attribute 'malloc' being applied to | Ted Kremenek |
2009-08-11 | Rename macro to avoid a name clash on FreeBSD. | Benjamin Kramer |
2009-08-10 | Take 2 on AltiVec-style vector initializers. | Nate Begeman |
2009-08-10 | fix a couple of problems with section attributes: | Chris Lattner |
2009-08-10 | Revert r78535, it is causing a number of failures to build projects. | Daniel Dunbar |
2009-08-09 | warn, as gcc does, if __attribute__((malloc)) applied to function returning n... | Ryan Flynn |