tic4x: sign extension using shifts
[deliverable/binutils-gdb.git] / gdb / cp-support.c
index bec8dc8615719e64655176abf4434b0a8b06ab7f..c1d62f1711efda0edfb2e5b1cc34aa9ef505e2c8 100644 (file)
@@ -1,5 +1,5 @@
 /* Helper routines for C++ support in GDB.
-   Copyright (C) 2002-2019 Free Software Foundation, Inc.
+   Copyright (C) 2002-2020 Free Software Foundation, Inc.
 
    Contributed by MontaVista Software.
 
@@ -2006,7 +2006,7 @@ static std::string
 quote (const char *str)
 {
   if (str != NULL)
-    return std::string (1, '\"') + str + '\"';
+    return std::string (1, '"') + str + '"';
   else
     return "<null>";
 }
This page took 0.024709 seconds and 4 git commands to generate.