- 3451e92 Changed error for nested type qualifier mismatch to by Fariborz Jahanian · 15 years ago
- 8875334 Test case for Sean Hunt's patch which I left out. by Fariborz Jahanian · 15 years ago
- 8f4c59e Add support for cdecl attribute. (As far as I know, it doesn't affect CodeGen by Eli Friedman · 15 years ago
- a23dcce Add a triple to try to fix the buildbot error. by Anders Carlsson · 15 years ago
- 1c03ca3 __uint128_t is indeed an unsigned integer type. Fixes PR5435. by Anders Carlsson · 15 years ago
- 4fcfde4 Eliminate &&s in tests. by Daniel Dunbar · 15 years ago
- dc767a1 Support -Wshorten-64-to-32 for integer types only, which seems to satisfy the by John McCall · 15 years ago
- e8babd1 Improve -Wconversion by permitting binary operations on values of the target by John McCall · 15 years ago
- d5c376e Test case for -Wconversion. by John McCall · 15 years ago
- 48f5e63 compare.c also needs a target triple now, and improve some comments while we're by John McCall · 15 years ago
- 5dbad3d Improve the -Wsign-compare heuristics: by John McCall · 15 years ago
- 35de813 Turn off -Wsign-compare warnings by default by Douglas Gregor · 15 years ago
- 632d772 Make ASTContext::getIntWidth return 1 for all boolean type variations, not just for the unqualified, unaliased bool. by Sebastian Redl · 15 years ago
- a6fda12 Adding -fshort-wchar option. by John Thompson · 15 years ago
- b13c87f Implement the conditional-operator part of -Wsign-compare. Turn by John McCall · 15 years ago
- 45aa455 Implement -Wsign-compare, or at least the actual comparison part of it. by John McCall · 15 years ago
- 9112b93 Diagnose the use of 'fastcall' on functions without prototypes or with by John McCall · 15 years ago
- d00f200 Diagnose __builtin_offsetof on incomplete types. Fixes rdar://problem/7222956 by John McCall · 15 years ago
- 54abf7d Change our basic strategy for avoiding deprecation warnings when the decl use by John McCall · 15 years ago
- d8ac057 Reorganize the parsing of decl groups / function definitions so that by John McCall · 15 years ago
- df7c3b9 Fix the type of __builtin_expect, from Ed Schouten! by Douglas Gregor · 15 years ago
- 9e6b37a warn about returning the address of a label. by Chris Lattner · 15 years ago
- addb0f6 Fix some Window-isms to get these tests to pass on Windows. by John Thompson · 15 years ago
- aee3c93 Implement Chris's suggestions for the precendence warnings. Reformat the code a bit. Test the fixits. by Sebastian Redl · 15 years ago
- 9e1d29b Implement a warning for mixing bitwise logical with comparison ops. Fixes PR5297. by Sebastian Redl · 15 years ago
- 9e4e2d1 Phrase compile time assert in standard way. by Daniel Dunbar · 15 years ago
- 7a128e8 Fix PR5298 - -Wmissing-noreturn shouldn't warn if the function is already by Chris Lattner · 15 years ago
- 5233826 Implement rdar://6756623 - use of deprecated type in deprecated typedef should not warn by Chris Lattner · 15 years ago
- d451f83 When parsing a top level struct declaration, make sure to by Chris Lattner · 15 years ago
- e78ec31 fix #2 :) by Chris Lattner · 15 years ago
- 4a058de fix testcase, thanks Daniel. by Chris Lattner · 15 years ago
- 9fcfe92 fix PR5265: the size of a float3 should be rounded up to its alignment. by Chris Lattner · 15 years ago
- 9dc9c37 Downgrade "function declared 'noreturn' should not return" from an by Douglas Gregor · 15 years ago
- 0a026af Implement PR5242: don't desugar a type more than once in a diagnostic. This by Chris Lattner · 15 years ago
- 6a2b926 teach getCorrespondingUnsignedType how to handle vectors of integers, by Chris Lattner · 15 years ago
- 5f04881 Implement PR4407 - missing warnings on case value overflow, by Chris Lattner · 15 years ago
- 7909fee add rdar # I accidentally lost. by Chris Lattner · 15 years ago
- 9079cd3 merge two tests. by Chris Lattner · 15 years ago
- bc8d42c make the diagnostic in the 'unused result' warning more precise by Chris Lattner · 15 years ago
- 8c8d919 Add CheckCallReturnType and start using it for regular call expressions. This will improve error messages. For by Anders Carlsson · 15 years ago
- b5352cf Implement support for -Wunused-variable, from Oscar Bonilla! by Douglas Gregor · 15 years ago
- 27a84d0 Add an error for function parameters that have a qualified address space since this is not allowed by the embedded c extension spec. by Tanya Lattner · 15 years ago
- 9a8c9a2 Provide a custom diagnostic when code tries to use an unknown builtin by Douglas Gregor · 15 years ago
- 50dd255 builtin_trap should be noreturn, this fixes PR5062, patch by Roman Divacky! by Chris Lattner · 15 years ago
- e7c9645 Add a "positive" matching test case for attribute 'noreturn' that involves a nested infinite loop. by Ted Kremenek · 15 years ago
- f679a98 Add two more test cases for attribute 'noreturn'. by Ted Kremenek · 15 years ago
- 0953e76 Refactor the representation of qualifiers to bring ExtQualType out of the by John McCall · 15 years ago
- 21fb98e implement support for __builtin_eh_return_data_regno on x86-32 and x86-64. by Chris Lattner · 15 years ago
- ed5d651 In C++, a variadic function does not need an ellipsis prior to the comma. Parse it in both C and C++, but diagnose it as an error in C with a fix-it hint to add the comma. by Douglas Gregor · 15 years ago
- 21190d5 Implement __builtin_unreachable(), a GCC 4.5 extension. by Chris Lattner · 15 years ago
- 1131014 Attempt to make a test portable. by Daniel Dunbar · 15 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 · 15 years ago
- 9f43534 clang-cc: Remove -ObjC -ObjC++ handling from clang-cc. by Daniel Dunbar · 15 years ago
- 29813c3 Some people don't want to fix their broken code just yet, so turn off by Mike Stump · 15 years ago
- 31fddcc Update tests by Anders Carlsson · 15 years ago
- 0f9a5b5 -Wchar-subscripts should not warn for explicit signed char subscripts either. Another fix for PR4978. by Sam Weinig · 15 years ago
- b0a2290 -Wchar-subscripts should not warn for unsigned char subscripts. Fixes PR4978. by Sam Weinig · 15 years ago
- 76e2b71 Add support for -Wchar-subscripts. Fixes PR4801. by Sam Weinig · 15 years ago
- a2a4161 ARM target tweaks. by Daniel Dunbar · 15 years ago
- 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
- 4ca606e reject returning a block expr even when it has parens and casts in the way. by Chris Lattner · 15 years ago
- 9ac6f62 PR4836, part 1: add Sema support for __builtin_isnan and friends; they by Eli Friedman · 15 years ago
- cc6be89 Remove unnecessary include. by Eli Friedman · 15 years ago
- 0e88b16 Cleanups. by Mike Stump · 15 years ago
- 91a2886 Fix bug in __extension__ handling for declarations, from Abramo by Douglas Gregor · 15 years ago
- 3075e76 Catch a few more cases of illegal comparisons. by Eli Friedman · 15 years ago
- 06c0f5b Eli points out that we really must diagnose "void* > 0" as an extension. by Chris Lattner · 15 years ago
- 6365e3e tweak some pointer sema checking stuff (which was added to implement PR4175) to by Chris Lattner · 15 years ago
- 04e8357 Fix bit-field promotion to be a bit closer to the behavior of gcc. by Eli Friedman · 15 years ago
- a95d757 Make integer promotions work correctly on PIC16 and other platforms by Eli Friedman · 15 years ago
- 199ea95 Don't perform integer promotions on the operand to a cast; this by Eli Friedman · 15 years ago
- bf030d7 Make test more precise. by Eli Friedman · 15 years ago
- 07a5c22 Disable all recognition of main() in -ffreestanding. Addresses bug #4720. by John McCall · 15 years ago
- 2cff7d1 Change handling of attribute 'malloc' to only accept the attribute on function by Ted Kremenek · 15 years ago
- 2733b66 Add more attribute 'malloc' test cases involving function pointers. by Ted Kremenek · 15 years ago
- b109069 Per Eli Friedman's feedback, handle attribute 'malloc' being applied to by Ted Kremenek · 15 years ago
- 73e10b0 Rename macro to avoid a name clash on FreeBSD. by Benjamin Kramer · 15 years ago
- 2ef13e5 Take 2 on AltiVec-style vector initializers. by Nate Begeman · 15 years ago
- 797c3c4 fix a couple of problems with section attributes: by Chris Lattner · 15 years ago
- 1df5109 Revert r78535, it is causing a number of failures to build projects. by Daniel Dunbar · 15 years ago
- fd6ad3c warn, as gcc does, if __attribute__((malloc)) applied to function returning non-pointer type by Ryan Flynn · 15 years ago
- 76168e2 map previously ignored __attribute((malloc)) to noalias attribute of llvm function's return by Ryan Flynn · 15 years ago
- 25b4fdb AltiVec-style vector initializer syntax, vec4 a = (vec4)(a, b, c, d); by Nate Begeman · 15 years ago
- 87b5fa9 Add tests. by Anders Carlsson · 15 years ago
- 8045c73 PR4700 - remove shift by 0 warning by Ryan Flynn · 15 years ago
- d043968 PR3333: warn when shifting by invalid amount by Ryan Flynn · 15 years ago
- 4403a5e add support for FreeBSD's format(printf0,x,y) attribute; allows null format string. by Ryan Flynn · 15 years ago
- 47259d9 Fix canonical type construction for function types with the noreturn by Douglas Gregor · 15 years ago
- 7cfd891 Fix test case for Darwin10 (which sets ssp), and move to CodeGen/ by Daniel Dunbar · 15 years ago
- 7a02a37 Per advice that Doug Gregor gave me several months ago, clean up the by Ted Kremenek · 15 years ago
- 8f6e88f PR3679: add #pragma weak test file by Ryan Flynn · 15 years ago
- 4dabe96 Ok, ok, I give in. Fix tests for unused result warning. by Daniel Dunbar · 15 years ago
- 3af708f More warnings for unused expressions. by Anders Carlsson · 15 years ago
- 7544311 Diagnose unused expression results for all statements, just not compound statements. by Anders Carlsson · 15 years ago
- 87e5732 Be sure to turn on -fblocks. by Mike Stump · 15 years ago
- 4d9d51a Add support for -Wmissing-noreturn. by Mike Stump · 15 years ago
- 5692586 Add noreturn support for blocks. by Mike Stump · 15 years ago
- fb84664 fix PR4633: cast to void should silence the 'unused expression' warning. by Chris Lattner · 15 years ago
- efadb77 Bounds checking for address spaces. by John McCall · 15 years ago
- e24aea2 Ensure we can work through typedefs. by Mike Stump · 15 years ago