aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/attr-cxx0x.cpp
AgeCommit message (Expand)Author
2013-03-18Diagnose uses of 'alignof' on functions in -pedantic mode.Richard Smith
2013-02-22Handle alignas(foo...) pack expansions.Richard Smith
2013-02-01Fix diagnostic for bad alignas use: it can't be applied to functions.Richard Smith
2013-02-01Implement [dcl.align]p5 and C11 6.7.5/4: alignas cannot underalign.Richard Smith
2013-01-29Produce a diagnostic if alignas is applied to an expression. Neither C11 norRichard Smith
2013-01-29Downgrade 'attribute ignored when parsing type' from error to warning, to matchRichard Smith
2013-01-29Implement C++11 [dcl.align]p1 and C11 6.7.5/2 rules for alignas and _Alignas.Richard Smith
2011-12-17Remove a non-gcc-compatible extension that would apply attributes on declarat...Eli Friedman
2011-10-23Fix grammar for C++11 alignment specifiers, and add a few FIXMEs.Peter Collingbourne
2011-10-23Attach class template attributes to the templated CXXRecordDecl,Peter Collingbourne
2011-10-13Update all tests other than Driver/std.cpp to use -std=c++11 rather thanRichard Smith
2011-09-29Add support for alignment-specifiers in C1X and C++11, removePeter Collingbourne
2011-05-05Implement support for C++0x alias templates.Richard Smith
2011-01-23Get rid of [[hiding]], [[override]] and [[base_check]].Anders Carlsson
2011-01-23Get rid of the [[final]] C++0x attribute.Anders Carlsson
2010-10-08__attribute__((aligned(n))) directly specifies the alignment of a declarationJohn McCall
2010-03-10When pretty-printing tag types, only print the tag if we're in C (andJohn McCall
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar
2009-12-01Don't automatically assume that an id-expression refers to aDouglas Gregor
2009-11-25Parse C++ member check attributes - base_check, hiding, and override.Sean Hunt
2009-11-21Added rudimentary C++0x attribute support.Sean Hunt