tinycc-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Tinycc-devel] TCC bug: L"" is missing in preprocessor output


From: Masha Rabinovich
Subject: [Tinycc-devel] TCC bug: L"" is missing in preprocessor output
Date: Wed, 19 Nov 2008 09:24:31 +0100

/*
TCC bug:
  string unicode qualifier (L"") is missing in preprocessor output

Environment:
  Win2000

TCC version:
  version 2008-09-15 from http://repo.or.cz/w/tinycc.git
  version 0.9.24 from http://bellard.org/tcc/

Command line:
  tcc.exe -E x.c

Expected output:
char * s1 = "Hello" ;
wchar_t * s2 = L"World" ;

Received output:
char * s1 = "Hello" ;
wchar_t * s2 = "World" ;

*/
char * s1 = "Hello";
wchar_t* s2 = L"World";


reply via email to

[Prev in Thread] Current Thread [Next in Thread]