Remove local variable from simple.rs test case
authorTom Tromey <tromey@adacore.com>
Wed, 1 Apr 2020 20:02:08 +0000 (14:02 -0600)
committerTom Tromey <tromey@adacore.com>
Wed, 1 Apr 2020 20:08:17 +0000 (14:08 -0600)
This removes the "y0" variable from simple.rs:main.  This variable
isn't needed by the test case, and it uses a form of initialization
that was added in rust 1.17.  Removing this makes it simpler to run
the gdb.rust tests against older versions of rustc.

gdb/testsuite/ChangeLog
2020-04-01  Tom Tromey  <tromey@adacore.com>

* gdb.rust/simple.rs (main): Remove "y0".

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.rust/simple.rs

index 28d1bcfb1b09e1ea6b53c33bfa6542e77eafd210..7819e39b97251239bdf66b63046259d4ccd1ba47 100644 (file)
@@ -1,3 +1,7 @@
+2020-04-01  Tom Tromey  <tromey@adacore.com>
+
+       * gdb.rust/simple.rs (main): Remove "y0".
+
 2020-04-01  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>
 
        * gdb.multi/stop-all-on-exit.c: New test.
index 36448ec45c6e7a76ce97bb10053707d8aabaf8f4..f44e4affebd411eb1bdd0992f02c6575a1ff38dc 100644 (file)
@@ -144,7 +144,6 @@ fn main () {
 
     let field1 = 77;
     let field2 = 88;
-    let y0 = HiBob { field1, field2 };
 
     let univariant = Univariant::Foo {a : 1};
     let univariant_anon = UnivariantAnon::Foo(1);