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