From dba33cb727d4ebb7498fbd1168a9c08bc127999d Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Sat, 18 Jan 2020 19:22:21 +0100 Subject: [PATCH] c++: Fix coroutines.cc build for nvptx-none target When building offloading cross-compiler from x86_64-linux to nvptx-none, the build fails with: ../../gcc/cp/coroutines.cc: In function 'tree_node* get_fn_local_identifier(tree, const char*)': ../../gcc/cp/coroutines.cc:2255:12: error: expected ';' before 'char' 2255 | sep = "$" | ^ | ; ...... 2262 | char *an; | ~~~~ 2020-01-18 Jakub Jelinek * coroutines.cc (get_fn_local_identifier): Fix NO_DOT_IN_LABEL but non-NO_DOLLAR_IN_LABEL case build. --- gcc/cp/ChangeLog | 5 +++++ gcc/cp/coroutines.cc | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 90665e1..177a1b5 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2020-01-18 Jakub Jelinek + + * coroutines.cc (get_fn_local_identifier): Fix NO_DOT_IN_LABEL + but non-NO_DOLLAR_IN_LABEL case build. + 2020-01-18 Iain Sandoe * Make-lang.in: Add coroutines.o. diff --git a/gcc/cp/coroutines.cc b/gcc/cp/coroutines.cc index ad0e9ef..d3aacd7 100644 --- a/gcc/cp/coroutines.cc +++ b/gcc/cp/coroutines.cc @@ -2252,7 +2252,7 @@ get_fn_local_identifier (tree orig, const char *append) sep = "."; #else #ifndef NO_DOLLAR_IN_LABEL - sep = "$" + sep = "$"; #else sep = "_"; pfx = "__"; -- 2.7.4