- d1aa800 Change the 'declared at' diagnostic to say 'declared here'. by Anders Carlsson · 15 years ago
- 684de63 ARM/APCS: Don't respect bit-field types when laying out structures. by Daniel Dunbar · 15 years ago
- a41a8c5 Whenever we complain about a failed initialization of a function or by Douglas Gregor · 15 years ago
- 58f9782 Altivec vector literal initializer count mismatch error removed. by John Thompson · 15 years ago
- c5e869b Add a testcase for PR6501 (too many/too few arguments to a function call). by Eric Christopher · 15 years ago
- 00522ad Temporarily XFAIL this test on windows. by Eric Christopher · 15 years ago
- 5e89655 Remove the argument number from the constant integer diagnostic. by Eric Christopher · 15 years ago
- d13ada1 tests: Don't force triple in x86-builtin-palignr test, this test should be by Daniel Dunbar · 15 years ago
- 26d2427 New test to verify that we see constant integers here. by Eric Christopher · 15 years ago
- 691ebc3 Consolidate most of the integer constant expression builtin requirement by Eric Christopher · 15 years ago
- 2b334bb make our existing "switch on bool" warning work for C. Since by Chris Lattner · 15 years ago
- c75d6cc Improve the bit-field too wide error message. by Anders Carlsson · 15 years ago
- 55b3884 When diagnosing suspicious precedence or assignments, move the fix-it by Douglas Gregor · 15 years ago
- dd17394 implement altivec.h and a bunch of support code, patch by Anton Yartsev! by Chris Lattner · 15 years ago
- 03a4bee Remove fixit for string literal comparison. Telling the user to use 'strcmp' is bad, and by Ted Kremenek · 15 years ago
- 08a4190 Improve diagnostics like "initializing <type> from an expression of by Douglas Gregor · 15 years ago
- 1a4221c Don't warn about unused static functions if they are marked with by Chris Lattner · 15 years ago
- d4eea83 Improve diagnostics when we fail to convert from a source type to a by Douglas Gregor · 15 years ago
- 355fa3a Use '%clang_cc1' instead of '%clang' to make the warning output more consistent across by Ted Kremenek · 15 years ago
- cb821d0 Downgrade the "declaration does not declare anything" error to a by Douglas Gregor · 15 years ago
- b4c0c2d Match GCC's behavior and do not include '-Wunused-parameter' in '-Wunused'. by Ted Kremenek · 15 years ago
- a8b48e4 Update test case. by Ted Kremenek · 15 years ago
- e1fcf29 Include all warnings under '-Wunused' in '-Wmost' and '-Wall'. by Ted Kremenek · 15 years ago
- 83e7a78 rename llvm::llvm_report_error -> llvm::report_fatal_error by Chris Lattner · 15 years ago
- c46a246 Don't emit an 'unused expression' warning for '||' and '&&' expressions that contain assignments by Ted Kremenek · 15 years ago
- 3aae609 Teach -Wsign-compare to treat 1 << blah as "idiomatically non-negative". by John McCall · 15 years ago
- 209acbd Devote a special diagnostic to the typo by John McCall · 15 years ago
- aec5860 Support __attribute__((unused)) on types. This suddenly started firing by John McCall · 15 years ago
- 7727acf Fix PR6327: restore invariants when there's a parse error in an initializer. by John McCall · 15 years ago
- 0b4c9b5 Support __attribute__((packed)) (along with other attributes) at the by Douglas Gregor · 15 years ago
- 6ee7653 Fix two bugs in format-string checking: by Ted Kremenek · 15 years ago
- 0266898 Control warnings about GNU extensions with -Wgnu, which has a subgroup by Douglas Gregor · 15 years ago
- bc52595 Ignore a more comprehensive set of gcc-special format attributes. by Duncan Sands · 15 years ago
- c263704 For forward-declared static inline functions, delay CFG-based warnings until we by Ted Kremenek · 15 years ago
- d064fdc Only perform CFG-based warnings on 'static inline' functions that by Ted Kremenek · 15 years ago
- 3c98902 (re)implement PR6542, accepting and discarding the __gcc_tdiag__ by Chris Lattner · 15 years ago
- a87d477 merge some tests. by Chris Lattner · 15 years ago
- 6580d5b rename test by Chris Lattner · 15 years ago
- b1332d7 merge two tests. by Chris Lattner · 15 years ago
- 61784e3 rename test. by Chris Lattner · 15 years ago
- 1a6154c move a test to a more appropriate directory by Chris Lattner · 15 years ago
- 053f4bd -Wshadow should only warn about parameter declarations when we're by John McCall · 15 years ago
- 0162070 Fix PR6618. by Rafael Espindola · 15 years ago
- db59bc8 Add sse4.2 support to this test. by Eric Christopher · 15 years ago
- a369a95 Implement -Wshadow for parameter declarations as well. by John McCall · 15 years ago
- 355c96e Add include for smmintrin.h to this test. by Eric Christopher · 15 years ago
- 73061d0 Pretty-print anonymous types using their kind and presumed location. by John McCall · 15 years ago
- c48c916 Remove warning about shadowing a built-in; built-ins aren't actually by Douglas Gregor · 15 years ago
- 8596bbe Issue error when a byref array is accessed in a block by Fariborz Jahanian · 15 years ago
- 9a8cb8d Forgot the testcases. by John McCall · 15 years ago
- 4b7a834 Add support for -Wwrite-strings. Patch by Mike M! Fixes PR 4804. by John McCall · 15 years ago
- 1c471f3 Check compatibility of vector types using their canonicalizations. by John McCall · 15 years ago
- 0faede6 Improve the unused-value check to look into comma expressions and filter out by John McCall · 15 years ago
- d1b47bf Warn about comparing an unsigned expression with 0 in tautological ways. by John McCall · 15 years ago
- d7358a3 Remember the PR number. by John McCall · 15 years ago
- 80639de Implement -Wmissing-field-initializers. Patch by mikem! by John McCall · 15 years ago
- 1e1d396 Implement missing-braces warning and add a test case. by Tanya Lattner · 15 years ago
- dbf217a Allow use of byref (__block attributed) arrays inside by Fariborz Jahanian · 15 years ago
- 02db31c Emit warning on indirect goto that potentially violates by Chris Lattner · 15 years ago
- fc3a070 address PR6502 by downgrading the scope checker's address by Chris Lattner · 15 years ago
- 9ea9bdb Keep an explicit stack of function and block scopes, each element of by Douglas Gregor · 15 years ago
- e679497 fix PR5933: don't warn about unused variables if a function has other errors in it. by Chris Lattner · 15 years ago
- d49d877 Allow a '0' precision in format strings (as the man page says it is okay). by Ted Kremenek · 15 years ago
- f9f627d Don't warn about case-value conversions from a negative value to a by Douglas Gregor · 15 years ago
- b3a4e43 Implement PR6423 by using one token of lookahead to disambiguate by Chris Lattner · 15 years ago
- e3fc547 Fix crasher caused by setting a bit in a possibly empty bitvector while by Ted Kremenek · 15 years ago
- efaff19 For printf format string checking, add support for positional format strings. by Ted Kremenek · 15 years ago
- 7f70dc8 For printf format string checking, move the tracking of the data argument index out of by Ted Kremenek · 15 years ago
- 23a370f Add a new conversion rank to classify conversions between complex and scalar by Chandler Carruth · 15 years ago
- 78c97fb Disable one test case because of the inconsistent results it is giving on by Ted Kremenek · 15 years ago
- 328ce34 When we encounter a function-specific attribute in a declaration specifier, by Charles Davis · 15 years ago
- 9107166 Always add CallExpr as block-level expression. Inline-based interprocedural by Zhongxing Xu · 15 years ago
- 87260c7 Add support for '%C' and '%S' printf conversion specifiers. by Ted Kremenek · 15 years ago
- c0cd21d Don't assert on compound assignment operators that operate in FP types when by John McCall · 15 years ago
- 064f7db When comparing two calling conventions after redeclaring a function, compare by Charles Davis · 15 years ago
- 05f6247 When a reference to a field of a struct/union/class is passed to the by Charles Davis · 15 years ago
- d84aac1 Add 'previous declaration is here' note for param redefinition errors, e.g.: by Chris Lattner · 15 years ago
- e01c063 Also don't warn about force_align_arg_pointer on function typedefs. (This will by Charles Davis · 15 years ago
- beaf5ed Two fixes related to force_align_arg_pointer: by Charles Davis · 15 years ago
- f3f8d2a Allow redefinitions of extern inline functions in GNU89 mode, just as GCC by Charles Davis · 15 years ago
- 2853eac Don't diagnose overflow in case statements when the conversion is a by Douglas Gregor · 15 years ago
- 30ab371 For -Wswitch-enum warnings, be sure to look through typedefs of enum by Douglas Gregor · 15 years ago
- 19c1525 When diagnosing enumerator values outside of the range of 'int', be by Douglas Gregor · 15 years ago
- 56bdded Fix test to not force triple, and also to not need stdint.h. by Daniel Dunbar · 15 years ago
- c777221 Do not add functions marked with the unused attribute to the list of unused functions to warn about. Update test case. by Tanya Lattner · 15 years ago
- 12ead49 Fix unused function warning to handle used attributes and redeclarations. Update test case. by Tanya Lattner · 15 years ago
- ab44216 Revert r95939, as suggested by Alexandre Julliard from the Wine project (and by Charles Davis · 15 years ago
- 75d11371 Disable warn_unused_function for now, its breaking various project builds due to by Daniel Dunbar · 15 years ago
- f0122fe dllimport and dllexport are declspec attributes, too. They're also by Charles Davis · 15 years ago
- 0da9e95 Add test case to show that Clang now checks the format string by Ted Kremenek · 15 years ago
- 0395618 Fix test case. by Ted Kremenek · 15 years ago
- 4e4b30e Refactor the logic for printf argument type-checking into analyze_printf::ArgTypeResult. by Ted Kremenek · 15 years ago
- e771a7a Add Sema support for __builtin_fpclassify by extending the existing check for __builtin_isinf and friends. Part of PR6083. by Benjamin Kramer · 15 years ago
- c4a2638 Fix for PR6274: teach constant folding to evaluate __builtin_expect. by Eli Friedman · 15 years ago
- 9a66c30 Complain if block-literal expression's parameter name is by Fariborz Jahanian · 15 years ago
- e6bbc01 Implementing unused function warning. by Tanya Lattner · 15 years ago
- b84412f Warn about using the new force_align_arg_pointer attribute on a function by Charles Davis · 15 years ago
- 05efad5 Make this test not rely on the system <limits.h>. Hopefully fixes the by John McCall · 15 years ago
- fb6289a Test case for warnings with carets inside macro instantiations. by John McCall · 15 years ago
- 5c41ee8 Patch by Cristian Draghici: by Ted Kremenek · 15 years ago