]> git.lizzy.rs Git - rust.git/commitdiff
Translate constructor arguments for zero-sized tuple structs
authorJames Miller <james@aatch.net>
Mon, 31 Aug 2015 11:57:41 +0000 (23:57 +1200)
committerJames Miller <james@aatch.net>
Mon, 31 Aug 2015 11:57:41 +0000 (23:57 +1200)
This was preventing any side-effects from the expressions from
happening.

Fixes #28114

src/librustc_trans/trans/base.rs
src/test/run-pass/zero-sized-tuple-struct.rs [new file with mode: 0644]

index 28047ee5812e7b072ae9cff6f6bef6d7fe8cf6af..99a00155c3bc728361879427bb5a103fe7ca749a 100644 (file)
@@ -1758,6 +1758,17 @@ pub fn trans_named_tuple_constructor<'blk, 'tcx>(mut bcx: Block<'blk, 'tcx>,
             }
             _ => ccx.sess().bug("expected expr as arguments for variant/struct tuple constructor")
         }
+    } else {
+        // Just eval all the expressions (if any). Since expressions in Rust can have arbitrary
+        // contents, there could be side-effects we need from them.
+        match args {
+            callee::ArgExprs(exprs) => {
+                for expr in exprs {
+                    bcx = expr::trans_into(bcx, expr, expr::Ignore);
+                }
+            }
+            _ => ()
+        }
     }
 
     // If the caller doesn't care about the result
diff --git a/src/test/run-pass/zero-sized-tuple-struct.rs b/src/test/run-pass/zero-sized-tuple-struct.rs
new file mode 100644 (file)
index 0000000..aaffdc4
--- /dev/null
@@ -0,0 +1,21 @@
+// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+#![allow(unused_assignments)]
+
+// Make sure that the constructor args are translated for zero-sized tuple structs
+
+struct Foo(());
+
+fn main() {
+    let mut a = 1;
+    Foo({ a = 2 });
+    assert_eq!(a, 2);
+}