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

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