Replace call to value_contents_raw by call to value_contents.
authorJoel Brobecker <brobecker@gnat.com>
Thu, 27 May 2010 17:37:45 +0000 (17:37 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Thu, 27 May 2010 17:37:45 +0000 (17:37 +0000)
This is something that Tom spotted.  It shouldn't make much of a difference
in practice with the current code, but Tom is planning on making some
changes (bitwise optimized-out tracking) in value_contents...

2010-05-27  Joel Brobecker  <brobecker@adacore.com>

        * ada-lang.c (ensure_lval): Replace call to value_contents_raw
        by call to value_contents.

gdb/ChangeLog
gdb/ada-lang.c

index bc7d651ffd99c541c261cb4ff13c126f0cc10e01..f749c08fdd39bc984c597a9a19e5bc87103e7882 100644 (file)
@@ -1,3 +1,8 @@
+2010-05-27  Joel Brobecker  <brobecker@adacore.com>
+
+       * ada-lang.c (ensure_lval): Replace call to value_contents_raw
+       by call to value_contents.
+
 2010-05-27  Ozkan Sezer  <sezeroz@gmail.com>
 
        * MAINTAINERS: Add myself for write after approval privileges.
index 2391cd64537449e8cdd5c67b3ef9e4097df5663b..09b7102d52eeda4c5a2ae948584d583962b6ae66 100644 (file)
@@ -3884,7 +3884,7 @@ ensure_lval (struct value *val, struct gdbarch *gdbarch, CORE_ADDR *sp)
        }
       VALUE_LVAL (val) = lval_memory;
 
-      write_memory (value_address (val), value_contents_raw (val), len);
+      write_memory (value_address (val), value_contents (val), len);
     }
 
   return val;