aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/string-literal.c
AgeCommit message (Expand)Author
2013-03-09When lexing in C11 mode, accept unicode character and string literals, per C11Richard Smith
2012-11-28Teach Lexer::getSpelling about raw string literals. Specifically, if a rawRichard Smith
2011-11-01Fix the representation of wide strings in the AST and IR so that it uses the ...Eli Friedman
2011-10-13Update all tests other than Driver/std.cpp to use -std=c++11 rather thanRichard Smith
2011-08-24Make constant aggregate constant initializers private linkage.Eric Christopher
2011-08-11Add tests for string literal concatenation.Craig Topper
2011-08-11Add support for C++0x raw string literals.Craig Topper
2011-08-04Emit wide string literals with the appropriate alignment.John McCall
2011-07-29This patch makes the string/character literal tests run in C,Douglas Gregor
2011-07-27Add support for C++0x unicode string and character literals, from Craig Topper!Douglas Gregor
2011-05-27Add unnamed_addr to internal globals which are only used as an operand to mem...Eli Friedman
2011-05-27Match llvm-gcc's string literals alignment by forcing alignment on string lit...Eli Friedman
2011-01-10Add unnamed_addr when creating artificial string globals. For example, inRafael Espindola
2010-10-07tests: Force a triple to avoid wchar_t differences.Daniel Dunbar
2010-10-06Add support for 4-byte UCNs like \U12345678. Warn about UCNs in c90 mode.Nico Weber
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar
2009-03-24Rename clang to clang-cc.Daniel Dunbar
2009-02-26fix some sema problems with wide strings and hook up basic codegen for them.Chris Lattner
2009-01-27eliminate some random .ll file outputsChris Lattner
2008-08-21Update a number of CodeGen tests to not create .ll files in the testDaniel Dunbar
2007-12-27no need to verify this, no errors/warnings are expected.Chris Lattner
2007-12-23String literal in aggregate expressionSeo Sanghyeon