aboutsummaryrefslogtreecommitdiff
path: root/test/Sema
AgeCommit message (Expand)Author
2013-05-06Grab-bag of bit-field fixes:John McCall
2013-05-06Fix assert if __extension__ or _Generic is used when initializing a char arra...Richard Smith
2013-05-04AArch64: teach Clang about __clear_cache intrinsicTim Northover
2013-05-03[Doc parsing] Provide diagnostics for unknown documentation Fariborz Jahanian
2013-04-30Fix PR15845: apparently MSVC does not support implicit int in C++ mode.Richard Smith
2013-04-29c language: diagnose use of "[*]" on any array dimensionFariborz Jahanian
2013-04-18Reject asm output constraints that consist of modifiers only.Benjamin Kramer
2013-04-18Switch the note order for -Woverloaded-shift-op-parentheses so that the noteRichard Trieu
2013-04-18Update the -Wparentheses tests to check that fix-its are in the correct place.Richard Trieu
2013-04-17[document parsing]: When tag declaration (but not definition!) Fariborz Jahanian
2013-04-17Extended VerifyDiagnosticConsumer to also verify source file for diagnostic.Andy Gibbs
2013-04-17Add warning group -Woverloaded-shift-op-parentheses to -Wparentheses. ThisRichard Trieu
2013-04-16Sema for Captured StatementsTareq A. Siraj
2013-04-16Remove setjmp.h header file from Sema/return.c test and include necessaryJyotsna Verma
2013-04-16Fix PR4296: Add parser detection/error recovery for nested functions, from Se...Douglas Gregor
2013-04-16Fix handling of atomic shift operations, from Serge Pavlov.Douglas Gregor
2013-04-15Local thread_local variables are implicitly 'static'. (This doesn't apply to ...Richard Smith
2013-04-15Properly check for a constant initializer for a thread-local variable.Richard Smith
2013-04-14Diagnose if a __thread or _Thread_local variable has a non-constant initializerRichard Smith
2013-04-14Handle incompatible redeclarations of library builtins better.John McCall
2013-04-13Annotate flavor of TLS variable (statically or dynamically initialized) onto ...Richard Smith
2013-04-13Don't replace an existing decl in the scope chains with itsJohn McCall
2013-04-12Parsing support for thread_local and _Thread_local. We give them the sameRichard Smith
2013-04-12Define Neon intrinsics as "static inline" to avoid warning. rdar://13108414Bob Wilson
2013-04-11Exclude test30 of Sema/return.c for Hexagon since setjmp.h include fileJyotsna Verma
2013-04-09Remove outdated run lines from tests.Richard Trieu
2013-04-07Sema: Don't crash when trying to emit a warning for a duplicate value in an i...Benjamin Kramer
2013-04-04Fix 41 of the 61 tests which fail with modules enabled: we were computing andRichard Smith
2013-04-03Enable use of _Static_assert inside structs and unions in C11 mode (as per C1...Andy Gibbs
2013-04-02Add -Wstatic-local-in-inline, which warns about using a static localJohn McCall
2013-04-01Only merge down a variable type if the previous declaration wasJohn McCall
2013-04-01Add test for PR12527 (bug has apparently already been fixed).Richard Smith
2013-03-30Sema: Don't crash when trying to emit a precedence warning on postinc/decrement.Benjamin Kramer
2013-03-29Sema: Warn on sizeof on binary ops on decayed arrays.Benjamin Kramer
2013-03-29Revert r178273 as it broke the Linux bootstrap due to false positivesTimur Iskhodzhanov
2013-03-28Warn about more than the first unused variable when -Werror is set.Matt Beaumont-Gay
2013-03-28Implemented a warning when an input several bitwise operations areSam Panzer
2013-03-28For -Wignored-qualifiers, don't warn on qualifiers which we acquire via aRichard Smith
2013-03-27Simplify test to use a count for the number of notes expected.Bill Wendling
2013-03-27Add another expected note. Two errors => two notes.Tim Northover
2013-03-27Fix testcase to add expected note.Bill Wendling
2013-03-25Emit an error message instead of crashing when dereferencing an incomplete po...Bill Wendling
2013-03-21Further weaken block conversion rules to permit blocks withJohn McCall
2013-03-18documentation comment parsing. Added couple of Fariborz Jahanian
2013-03-18Diagnose uses of 'alignof' on functions in -pedantic mode.Richard Smith
2013-03-18Add missing diagnostic for a nested-name-specifier on a free-standing type de...Richard Smith
2013-03-15Enhance -Wtautological-constant-out-of-range-compare to include the name of t...Ted Kremenek
2013-03-15c: Also chek for integer overflow for '%' operator.Fariborz Jahanian
2013-03-15c: add the missing binary operatory when checkingFariborz Jahanian
2013-03-07HeaderDoc: Support more of HeaderDoc documentation Fariborz Jahanian