about summary refs log tree commit diff
path: root/src/test/codegen
diff options
context:
space:
mode:
authorErick Tryzelaar <erick.tryzelaar@gmail.com>2013-08-10 12:04:40 -0700
committerErick Tryzelaar <erick.tryzelaar@gmail.com>2013-08-10 12:04:40 -0700
commitc8a93efdae48b88bf594480705a5c0aac39c75e1 (patch)
tree07b97a6ad0d382272a978018c71c5220cece8237 /src/test/codegen
parent5b2c1c543fb7e2201ff2c7c579fafef670b149e0 (diff)
parent2ba36ec62934c8b877766a6283633b6407c8d357 (diff)
downloadrust-c8a93efdae48b88bf594480705a5c0aac39c75e1.tar.gz
rust-c8a93efdae48b88bf594480705a5c0aac39c75e1.zip
Merge remote-tracking branch 'remotes/origin/master' into cleanup-iterators
Diffstat (limited to 'src/test/codegen')
-rw-r--r--src/test/codegen/single-return-value.cc14
-rw-r--r--src/test/codegen/single-return-value.rs14
2 files changed, 28 insertions, 0 deletions
diff --git a/src/test/codegen/single-return-value.cc b/src/test/codegen/single-return-value.cc
new file mode 100644
index 00000000000..97d80d3950f
--- /dev/null
+++ b/src/test/codegen/single-return-value.cc
@@ -0,0 +1,14 @@
+// Copyright 2013 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.
+
+extern "C"
+int test() {
+  return 5;
+}
diff --git a/src/test/codegen/single-return-value.rs b/src/test/codegen/single-return-value.rs
new file mode 100644
index 00000000000..e6eb9a2be72
--- /dev/null
+++ b/src/test/codegen/single-return-value.rs
@@ -0,0 +1,14 @@
+// Copyright 2013 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.
+
+#[no_mangle]
+fn test() -> int {
+    5
+}