llvm-project/lldb/test/lang
Dawn Perchik 045c829223 Fix evaluation of unicode character arrays (char16_t[] and char32_t[])
Suppose we have the UTF-16 string:
    char16_t[] s = u"hello";
Before this patch, evaluating the string in lldb would get:
    (char16_t [6]) $0 = ([0] = U+0068 u'h', [1] = U+0065 u'e', [2] = U+006c u'l', [3] = U+006c u'l', [4] = U+006f u'o', [5] = U+0000 u'\0')
After applying the patch, we now get:
    (char16_t [6]) $0 = u"hello"

Patch from evgeny.leviant@gmail.com
Reviewed by: granata.enrico
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D13053

llvm-svn: 248555
2015-09-25 02:16:52 +00:00
..
c Revert 248366 "Testcase and fix for bug 24074" 2015-09-23 19:32:56 +00:00
cpp Fix evaluation of unicode character arrays (char16_t[] and char32_t[]) 2015-09-25 02:16:52 +00:00
go For now skip go tests that trigger assertion failures on FreeBSD 2015-09-21 13:32:21 +00:00
mixed Set the default language to use when evaluating to that of the frame's CU. 2015-09-04 01:02:30 +00:00
objc Rename clang_type -> compiler_type for variables. 2015-09-24 03:54:50 +00:00
objcxx Added a testcase that checks that fairly complicated 2014-11-11 00:14:00 +00:00