Blame SOURCES/gdb-vla-intel-fix-print-char-array.patch

6240d7
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
6240d7
From: Sergio Durigan Junior <sergiodj@redhat.com>
6240d7
Date: Thu, 7 Dec 2017 16:20:31 -0500
6240d7
Subject: gdb-vla-intel-fix-print-char-array.patch
6240d7
6240d7
;; Revert upstream commit 469412dd9ccc4de5874fd3299b105833f36b34cd
6240d7
6240d7
Revert commit (only the part touching gdb/f-valprint.c):
6240d7
6240d7
  commit 469412dd9ccc4de5874fd3299b105833f36b34cd
6240d7
  Author: Christoph Weinmann <christoph.t.weinmann@intel.com>
6240d7
  Date:   Fri Sep 8 15:11:47 2017 +0200
6240d7
6240d7
      Remove C/C++ relevant code in Fortran specific file.
6240d7
6240d7
      Remove code relevant for printing C/C++ Integer values in a
6240d7
      Fortran specific file to unify printing of Fortran values.
6240d7
      This does not change the output.
6240d7
6240d7
And adjust its testcase.
6240d7
6240d7
diff --git a/gdb/f-valprint.c b/gdb/f-valprint.c
6240d7
--- a/gdb/f-valprint.c
6240d7
+++ b/gdb/f-valprint.c
6240d7
@@ -313,8 +313,22 @@ f_val_print (struct type *type, LONGEST embedded_offset,
6240d7
 				      original_value, &opts, 0, stream);
6240d7
 	}
6240d7
       else
6240d7
-	val_print_scalar_formatted (type, embedded_offset,
6240d7
-				    original_value, options, 0, stream);
6240d7
+	{
6240d7
+	  val_print_scalar_formatted (type, embedded_offset,
6240d7
+				      original_value, options, 0, stream);
6240d7
+	  /* C and C++ has no single byte int type, char is used instead.
6240d7
+	     Since we don't know whether the value is really intended to
6240d7
+	     be used as an integer or a character, print the character
6240d7
+	     equivalent as well.  */
6240d7
+	  if (TYPE_LENGTH (type) == 1)
6240d7
+	    {
6240d7
+	      LONGEST c;
6240d7
+
6240d7
+	      fputs_filtered (" ", stream);
6240d7
+	      c = unpack_long (type, valaddr + embedded_offset);
6240d7
+	      LA_PRINT_CHAR ((unsigned char) c, type, stream);
6240d7
+	    }
6240d7
+	}
6240d7
       break;
6240d7
 
6240d7
     case TYPE_CODE_STRUCT:
6240d7
diff --git a/gdb/testsuite/gdb.fortran/printing-types.exp b/gdb/testsuite/gdb.fortran/printing-types.exp
6240d7
--- a/gdb/testsuite/gdb.fortran/printing-types.exp
6240d7
+++ b/gdb/testsuite/gdb.fortran/printing-types.exp
6240d7
@@ -29,7 +29,7 @@ if {![runto MAIN__]} then {
6240d7
 gdb_breakpoint [gdb_get_line_number "write"]
6240d7
 gdb_continue_to_breakpoint "write"
6240d7
 
6240d7
-gdb_test "print oneByte"	" = 1"
6240d7
+gdb_test "print oneByte"	" = 1 \'\\\\001\'"
6240d7
 gdb_test "print twobytes"	" = 2"
6240d7
 gdb_test "print chvalue"	" = \'a\'"
6240d7
 gdb_test "print logvalue"	" = \.TRUE\."