- 21190d5 Implement __builtin_unreachable(), a GCC 4.5 extension. by Chris Lattner · 16 years ago
- 1131014 Attempt to make a test portable. by Daniel Dunbar · 16 years ago
- 4bf4e30 Make our char vector types not be explicitly signed to match GCC and to fix compilation with C++ and -fno-lax-vector-conversions by Anders Carlsson · 16 years ago
- 9f43534 clang-cc: Remove -ObjC -ObjC++ handling from clang-cc. by Daniel Dunbar · 16 years ago
- 29813c3 Some people don't want to fix their broken code just yet, so turn off by Mike Stump · 16 years ago
- 31fddcc Update tests by Anders Carlsson · 16 years ago
- 0f9a5b5 -Wchar-subscripts should not warn for explicit signed char subscripts either. Another fix for PR4978. by Sam Weinig · 16 years ago
- b0a2290 -Wchar-subscripts should not warn for unsigned char subscripts. Fixes PR4978. by Sam Weinig · 16 years ago
- 76e2b71 Add support for -Wchar-subscripts. Fixes PR4801. by Sam Weinig · 16 years ago
- a2a4161 ARM target tweaks. by Daniel Dunbar · 16 years ago
- 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 16 years ago
- 4ca606e reject returning a block expr even when it has parens and casts in the way. by Chris Lattner · 16 years ago
- 9ac6f62 PR4836, part 1: add Sema support for __builtin_isnan and friends; they by Eli Friedman · 16 years ago
- cc6be89 Remove unnecessary include. by Eli Friedman · 16 years ago
- 0e88b16 Cleanups. by Mike Stump · 16 years ago
- 91a2886 Fix bug in __extension__ handling for declarations, from Abramo by Douglas Gregor · 16 years ago
- 3075e76 Catch a few more cases of illegal comparisons. by Eli Friedman · 16 years ago
- 06c0f5b Eli points out that we really must diagnose "void* > 0" as an extension. by Chris Lattner · 16 years ago
- 6365e3e tweak some pointer sema checking stuff (which was added to implement PR4175) to by Chris Lattner · 16 years ago
- 04e8357 Fix bit-field promotion to be a bit closer to the behavior of gcc. by Eli Friedman · 16 years ago
- a95d757 Make integer promotions work correctly on PIC16 and other platforms by Eli Friedman · 16 years ago
- 199ea95 Don't perform integer promotions on the operand to a cast; this by Eli Friedman · 16 years ago
- bf030d7 Make test more precise. by Eli Friedman · 16 years ago
- 07a5c22 Disable all recognition of main() in -ffreestanding. Addresses bug #4720. by John McCall · 16 years ago
- 2cff7d1 Change handling of attribute 'malloc' to only accept the attribute on function by Ted Kremenek · 16 years ago
- 2733b66 Add more attribute 'malloc' test cases involving function pointers. by Ted Kremenek · 16 years ago
- b109069 Per Eli Friedman's feedback, handle attribute 'malloc' being applied to by Ted Kremenek · 16 years ago
- 73e10b0 Rename macro to avoid a name clash on FreeBSD. by Benjamin Kramer · 16 years ago
- 2ef13e5 Take 2 on AltiVec-style vector initializers. by Nate Begeman · 16 years ago
- 797c3c4 fix a couple of problems with section attributes: by Chris Lattner · 16 years ago
- 1df5109 Revert r78535, it is causing a number of failures to build projects. by Daniel Dunbar · 16 years ago
- fd6ad3c warn, as gcc does, if __attribute__((malloc)) applied to function returning non-pointer type by Ryan Flynn · 16 years ago
- 76168e2 map previously ignored __attribute((malloc)) to noalias attribute of llvm function's return by Ryan Flynn · 16 years ago
- 25b4fdb AltiVec-style vector initializer syntax, vec4 a = (vec4)(a, b, c, d); by Nate Begeman · 16 years ago
- 87b5fa9 Add tests. by Anders Carlsson · 16 years ago
- 8045c73 PR4700 - remove shift by 0 warning by Ryan Flynn · 16 years ago
- d043968 PR3333: warn when shifting by invalid amount by Ryan Flynn · 16 years ago
- 4403a5e add support for FreeBSD's format(printf0,x,y) attribute; allows null format string. by Ryan Flynn · 16 years ago
- 47259d9 Fix canonical type construction for function types with the noreturn by Douglas Gregor · 16 years ago
- 7cfd891 Fix test case for Darwin10 (which sets ssp), and move to CodeGen/ by Daniel Dunbar · 16 years ago
- 7a02a37 Per advice that Doug Gregor gave me several months ago, clean up the by Ted Kremenek · 16 years ago
- 8f6e88f PR3679: add #pragma weak test file by Ryan Flynn · 16 years ago
- 4dabe96 Ok, ok, I give in. Fix tests for unused result warning. by Daniel Dunbar · 16 years ago
- 3af708f More warnings for unused expressions. by Anders Carlsson · 16 years ago
- 7544311 Diagnose unused expression results for all statements, just not compound statements. by Anders Carlsson · 16 years ago
- 87e5732 Be sure to turn on -fblocks. by Mike Stump · 16 years ago
- 4d9d51a Add support for -Wmissing-noreturn. by Mike Stump · 16 years ago
- 5692586 Add noreturn support for blocks. by Mike Stump · 16 years ago
- fb84664 fix PR4633: cast to void should silence the 'unused expression' warning. by Chris Lattner · 16 years ago
- efadb77 Bounds checking for address spaces. by John McCall · 16 years ago
- e24aea2 Ensure we can work through typedefs. by Mike Stump · 16 years ago
- 773db1d Add knowledge about _longjmp being noreturn. by Mike Stump · 16 years ago
- fd350b5 Add builtin knowledge about longjmp being noreturn. Add printing for by Mike Stump · 16 years ago
- 0feecbb Add noreturn for exit. by Mike Stump · 16 years ago
- 22bfc7b add bugzilla # by Chris Lattner · 16 years ago
- 2d3c191 Fix PR4624. by Mike Stump · 16 years ago
- 478fbc6 PR3575 - warn on declared variable or function attributes after a definition, which are currently ignored. by Ryan Flynn · 16 years ago
- 2455636 Add noreturn as a type attribute, handle printing for them and handle by Mike Stump · 16 years ago
- 8bf0ccd Make having no RUN line a failure. by Daniel Dunbar · 16 years ago
- 13591ed Semantic checking for main(). by John McCall · 16 years ago
- 5f28a1e Implement new warning for functions declared 'noreturn' when they fall off the end. by Mike Stump · 16 years ago
- b1682c5 Add warning for falling off the end of a function that should return a by Mike Stump · 16 years ago
- d1969d8 Prep for new warning. by Mike Stump · 16 years ago
- ec8b59f Improve GCC compatibility by allowing static tentative definitions of by Douglas Gregor · 16 years ago
- be6d259 enhance the goto checker to reject jumps across __block variable definitions. by Chris Lattner · 16 years ago
- f23ecd9 Generate error on declaration containing 'static' and '__attribute__((weak))' by Fariborz Jahanian · 16 years ago
- dbfe99e Handle some more fallout with the conversion of using PointerType for by Ted Kremenek · 16 years ago
- 9685aee Remove excessive use of Carbon.h / Cocoa.h in clang tests. by Daniel Dunbar · 16 years ago
- cb52d28 Misc fixes to fix tests on OpenBSD, per email to cfe-commits. Patches by Eli Friedman · 16 years ago
- 9c10fcf reimplement vector comparisons as [fi]cmp+sext instead of using v[if]cmp. by Chris Lattner · 16 years ago
- 6bec78d Tighten up the conditions under which we build an implicit function by Douglas Gregor · 16 years ago
- f933437 Fix a problem with false diagnostics when comparing distinct NULL pointer types, from David Majnemer by Douglas Gregor · 16 years ago
- 6f4a69a Fix bitfield promotion in the presence of explicit casts, from Abrama Bagnara. by Douglas Gregor · 16 years ago
- 149f138 Implement PR4175, catching some questionable comparisons. Patch by by Chris Lattner · 16 years ago
- d966a55 Move the check for vprintf* functions inside of SemaCheckStringLiteral. Fixes PR4470. by Anders Carlsson · 16 years ago
- 1bd1f6e OpenCL 1.0 support: by Nate Begeman · 16 years ago
- 8f031b3 Implement support for the format_arg attribute. Fixes PR4442. by Anders Carlsson · 16 years ago
- e8c9e92 OpenCL 1.0 Support: by Nate Begeman · 16 years ago
- 58d29a4 OpenCL 1.0 support: explicit casts to ext-vector types by Nate Begeman · 16 years ago
- 131f465 OpenCL 1.0 Support, patch 1/N: upper case swizzle operator and hex element index. by Nate Begeman · 16 years ago
- 6aed766 Add -fblocks by Douglas Gregor · 16 years ago
- e0762c9 Keep track of when declarations are "used" according to C and by Douglas Gregor · 16 years ago
- 7d5c74e Use QualType to represent block's implicit return type as by Fariborz Jahanian · 16 years ago
- 5bc8610 PR4351: Add constant evaluation for constructs like "foo == NULL", where by Eli Friedman · 16 years ago
- 6b5374f Allow initializing a vector with a vector in addition to allowing a list by Eli Friedman · 16 years ago
- 687abff Don't allow defining a block with a non-prototype type. Remove a by Eli Friedman · 16 years ago
- dc5a1bd Test changes to account for removed builtins. by Eli Friedman · 16 years ago
- 147bd64 PR4326: Handle constant evaluation for void* pointer subtraction correctly. by Eli Friedman · 16 years ago
- bb32e6d Back out r72764; I should have looked more carefully before committing by Eli Friedman · 16 years ago
- a3c29e1 PR3678: Add support for "Yt" asm register constraint. by Eli Friedman · 16 years ago
- c4db24a PR4290: Handle vfprintf in a way that doesn't give any diagnostics for by Eli Friedman · 16 years ago
- b92abb4 PR4142: Add %m format string specifier. by Eli Friedman · 16 years ago
- bc4e29f PR4287: allow a variadic prototype to make a subsequent K&R style by Eli Friedman · 16 years ago
- 8662587 Downgrade an error about "return in a no-return function" from being by Chris Lattner · 16 years ago
- bb6415c Fix for PR4285: allow intializing a const wchar_t array with a wide string. by Eli Friedman · 16 years ago
- e540858 Make sure we don't give the wrong warning, and make sure not to set by Eli Friedman · 16 years ago
- 8718a6a Revert r72575, which isn't really right, and fix up other code to by Eli Friedman · 16 years ago
- 4f54f4e Avoid dumping during semantic analysis when checking array types when by Mike Stump · 16 years ago
- 2073fd5 restrict is not a keyword in gnu89 mode. Change TokenKinds.def to by Eli Friedman · 16 years ago
- 1eed602 Extend getPreferredTypeAlign to handle _Complex double and long long correctly. by Eli Friedman · 16 years ago