aboutsummaryrefslogtreecommitdiff
path: root/test/Lexer
AgeCommit message (Expand)Author
2010-11-09Split out -Wconversion warnings about constant precision into theirJohn McCall
2010-10-20Add a __has_attribute macro that works much like __has_feature and __has_buil...Anders Carlsson
2010-10-18tests: Force triple to avoid limited precision warning on win32.Daniel Dunbar
2010-10-14r116509 fixed the Win32 XFAIL.Francois Pichet
2010-10-14allow I128 suffixes in msextensions mode just like i128 suffixes, patchChris Lattner
2010-10-09Add support for UCNs for character literalsNico Weber
2010-10-06Remove hard CRLF end-of-line markers from two files. These should be addedChandler Carruth
2010-10-06Add support for 4-byte UCNs like \U12345678. Warn about UCNs in c90 mode.Nico Weber
2010-09-27Lexer: Implement GCC's version of pragma message.Michael J. Spencer
2010-09-24Allow the use of C++0x deleted functions as an extension in C++98.Anders Carlsson
2010-09-13Add __char16_t and __char32_t as aliases for the C++0x char16_t andDouglas Gregor
2010-09-10Make sure we're producing a newline in the preprocessed output beforeDouglas Gregor
2010-09-09When we parse a pragma, keep track of how that pragma was originallyDouglas Gregor
2010-09-07tests: Use -ffreestanding when including stdint.h, to avoid platform dependen...Daniel Dunbar
2010-08-31Implement __has_feature(cxx_inline_namespaces)Sebastian Redl
2010-08-31improve isHexaLiteral to work with escaped newlines and trigraphs,Chris Lattner
2010-08-30In Microsoft compatibility mode, don't parse the exponent as part ofDouglas Gregor
2010-08-19Test for PR7888.Eli Friedman
2010-07-22tests: Make FileCheck version check that preamble isn't longer than we expected.Daniel Dunbar
2010-07-21tests: XFAIL this test on win32, someone else can hunt this one down.Daniel Dunbar
2010-07-21tests: Use FileCheck instead of external input; I think this test was failing onDaniel Dunbar
2010-07-20Introduce a new lexer function to compute the "preamble" of a file,Douglas Gregor
2010-07-20Complain when string literals are too long for the active languageDouglas Gregor
2010-07-17rename testChris Lattner
2010-07-11change the 'invalid token after top level declarator' message to beChris Lattner
2010-07-07fix PR4499, patch by Kyle Dean!Chris Lattner
2010-06-29tests: Use %clangxx when using driver for C++, in case C++ support is disabled.Daniel Dunbar
2010-06-25A bug I've introduced in STDIN handling surfaced a few broken tests, fix them.Benjamin Kramer
2010-05-22Daniel re-educated me about what Alias does and does not do. Turn that off forChandler Carruth
2010-05-20Don't warn about use of hex floats in c++ mode by default,Chris Lattner
2010-05-17robustify the conflict marker stuff. Don't add 7 twice, which wouldChris Lattner
2010-04-20push some source location information down through the compiler,Chris Lattner
2010-04-20enhance sourcemgr to detect various UTF BOM's and emit a fatal errorChris Lattner
2010-04-18Add testcase that I forgot for r101667 for gnu-keywords.Chandler Carruth
2010-02-26At sabre's request, drop the FP bounds diagnostics down to warnings and fileJohn McCall
2010-01-22Fixes test.Fariborz Jahanian
2010-01-22ui64, etc. are valid VS suffixes.Fariborz Jahanian
2010-01-13Update test function names so as not to use potential keywords.Sean Hunt
2010-01-13Add a bunch more feature-checking macros for C++0x features. Some of these areSean Hunt
2010-01-10Do not parse hexadecimal floating point literals in C++0x mode because they areSean Hunt
2010-01-09add a bunch of missing prototypes to testsChris Lattner
2009-12-24Diagnose out-of-bounds floating-point constants. Fixes rdar://problem/6974641John McCall
2009-12-17reimplement r90860, fixing a couple of problems:Chris Lattner
2009-12-15Update tests to use %clang instead of 'clang', and forcibly disable use of 'Daniel Dunbar
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar
2009-12-14teach clang to recover gracefully from conflict markers left in sourceChris Lattner
2009-12-08Integrate the following from the 'objective-rewrite' branch:Steve Naroff
2009-12-03Add 'has_feature(cxx_exceptions)' to allow code to determine via preprocessor...Ted Kremenek
2009-12-03Rename has_feature(rtti) to has_feature(cxx_rtti) for clarity.Ted Kremenek
2009-12-03Add FileCheck test for '__has_feature(rtti)'.Ted Kremenek