remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git] / test / FrontendC / wchar-const.c
blob7cf3322e8cf9663bf8dd0de66f7812697ac466f4
1 // RUN: %llvmgcc -S %s -o - | grep {constant \\\[18 x} | grep { 84, }
2 // This should pass for any endianness combination of host and target.
3 #include <wchar.h>
4 extern void foo(const wchar_t* p);
5 int main (int argc, const char * argv[])
7 foo(L"This is some text");
8 return 0;