summaryrefslogtreecommitdiff
path: root/clang/test/Sema/array-init.c
AgeCommit message (Expand)Author
2023-08-28[clang] Remove rdar links; NFCAaron Ballman
2023-08-11[C23] Rename C2x->C23 in diagnosticsAaron Ballman
2023-07-17Revert "Remove rdar links; NFC"Mehdi Amini
2023-07-07Remove rdar links; NFCAaron Ballman
2023-04-03[C2x] Implement support for empty brace initialization (WG14 N2900 and WG14 N...Aaron Ballman
2022-09-12[Clang] Reword diagnostic for scope identifier with linkageJun Zhang
2022-07-22Strengthen -Wint-conversion to default to an errorAaron Ballman
2022-04-01Add prototypes to functions which need them; NFCAaron Ballman
2021-10-21Recommit: Compress formatting of array type names (int [4] -> int[4])David Blaikie
2021-10-14Revert "Compress formatting of array type names (int [4] -> int[4])"David Blaikie
2021-10-14Compress formatting of array type names (int [4] -> int[4])David Blaikie
2020-05-06[Sema] Put existing warning under -Wexcess-initializersRichard Sandiford
2014-10-20Switch C compilations to C11 by default.Richard Smith
2014-05-22Improved location for non-constant initializers diagnostics.Abramo Bagnara
2013-06-08Recognition of empty structures and unions is moved to semantic stageSerge Pavlov
2013-05-06Fix assert if __extension__ or _Generic is used when initializing a char arra...Richard Smith
2012-09-20PR13881: Add -Wzero-length-array for zero length array extension, and move it...Richard Smith
2012-09-12clang/test: [PR8833] Introduce the feature "LP64" to suppress LLP64-incompati...NAKAMURA Takumi
2012-05-15Improve some of the conversion warnings to fire on conversion to bool.David Blaikie
2012-04-05Enable warn_impcast_literal_float_to_integer by default.David Blaikie
2012-02-03Don't warn about anonymous struct/union in C11.Hans Wennborg
2012-01-05The value of a const weak variable is not an integer constant.John McCall
2011-12-29Change the diagnostics which said 'accepted as an extension' to instead sayRichard Smith
2011-09-19Add list initialization for complex numbers in C. Essentially, this allows "...Eli Friedman
2011-02-22Implement the GNU C extension which permits the initialization of anDouglas Gregor
2010-08-14PR3344: Downgrade "too many braces around scalar initializer" to a warning.Eli Friedman
2010-07-29Reword the empty struct/union warning in C to note that such structs and unio...Douglas Gregor
2010-04-09Improve diagnostics like "initializing <type> from an expression ofDouglas Gregor
2010-04-09Improve diagnostics when we fail to convert from a source type to aDouglas Gregor
2009-12-19Initialization improvements: addition of string initialization and a fewEli Friedman
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-07-22Prep for new warning.Mike Stump
2009-05-29Make sure we don't give the wrong warning, and make sure not to set Eli Friedman
2009-05-16PR3009: Get rid of bogus warning for scalar compound literals.Eli Friedman
2009-03-24Rename clang to clang-cc.Daniel Dunbar
2009-03-20Allow flexible array initializers that are not surrounded byDouglas Gregor
2009-02-18Downgrade the "excess elements in initializer" errors to warnings *inDouglas Gregor
2009-02-04Implement semantic analysis for the GNU flexible array initializationDouglas Gregor
2009-01-30Upgrade the "excess elements in array initializer" warning to anDouglas Gregor
2009-01-28Code generation support for C99 designated initializers.Douglas Gregor
2008-11-1264-bit test fixes.Sebastian Redl
2008-09-01readd test as it passes correctly. nice, but weirdNuno Lopes
2008-09-01Backing out r55607 due to logic errors and test regression.Eli Friedman
2008-09-01fix one more this-is-not-a-constant error. test includedNuno Lopes
2008-09-01make CheckArithmeticConstantExpression() aware of &foo and pointersNuno Lopes
2008-08-18Support initialization of incomplete array with zero size (asDaniel Dunbar
2008-08-10wrap some long diagnostics, make 'initializer is not a constant' diagnosticChris Lattner
2008-05-25Count the number of initializable members correctly in structs/unions Eli Friedman
2008-05-25Diagnose implicit init list for empty aggregate, like struct {}. Fixes Eli Friedman