mirror of git://gcc.gnu.org/git/gcc.git
[PATCH] preprocessor stringizing raw strings
https://gcc.gnu.org/ml/gcc-patches/2017-10/msg00611.html libcpp/ PR preprocessor/82506 * macro.c (cpp_quote_string): Escape raw LFs. gcc/testsuite/ PR preprocessor/82506 * g++.dg/cpp/string-3.C: New. From-SVN: r253605
This commit is contained in:
parent
eb484969f6
commit
35b82d26e5
|
|
@ -1,3 +1,8 @@
|
||||||
|
2017-10-10 Nathan Sidwell <nathan@acm.org>
|
||||||
|
|
||||||
|
PR preprocessor/82506
|
||||||
|
* g++.dg/cpp/string-3.C: New.
|
||||||
|
|
||||||
2017-10-10 Will Schmidt <will_schmidt@vnet.ibm.com>
|
2017-10-10 Will Schmidt <will_schmidt@vnet.ibm.com>
|
||||||
|
|
||||||
* gcc.target/powerpc/fold-vec-splat-16.c: New
|
* gcc.target/powerpc/fold-vec-splat-16.c: New
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
// PR c++/82506
|
||||||
|
// { dg-do preprocess { target c++11 } }
|
||||||
|
|
||||||
|
#define STRINGIZE(A) #A
|
||||||
|
|
||||||
|
BEGIN STRINGIZE(R"(
|
||||||
|
)") END
|
||||||
|
|
||||||
|
// { dg-final { scan-file string-3.ii "BEGIN \"R\\\"(\\n)\\\"\"\n END" } }
|
||||||
|
|
@ -1,3 +1,8 @@
|
||||||
|
2017-10-10 Nathan Sidwell <nathan@acm.org>
|
||||||
|
|
||||||
|
PR preprocessor/82506
|
||||||
|
* macro.c (cpp_quote_string): Escape raw LFs.
|
||||||
|
|
||||||
2017-09-15 Andrew Sutton <andrew.n.sutton@gmail.com>
|
2017-09-15 Andrew Sutton <andrew.n.sutton@gmail.com>
|
||||||
Jakub Jelinek <jakub@redhat.com>
|
Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -502,13 +502,21 @@ cpp_quote_string (uchar *dest, const uchar *src, unsigned int len)
|
||||||
{
|
{
|
||||||
uchar c = *src++;
|
uchar c = *src++;
|
||||||
|
|
||||||
if (c == '\\' || c == '"')
|
switch (c)
|
||||||
{
|
{
|
||||||
|
case '\n':
|
||||||
|
/* Naked LF can appear in raw string literals */
|
||||||
|
c = 'n';
|
||||||
|
/* FALLTHROUGH */
|
||||||
|
|
||||||
|
case '\\':
|
||||||
|
case '"':
|
||||||
*dest++ = '\\';
|
*dest++ = '\\';
|
||||||
|
/* FALLTHROUGH */
|
||||||
|
|
||||||
|
default:
|
||||||
*dest++ = c;
|
*dest++ = c;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
*dest++ = c;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return dest;
|
return dest;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue