auto merge of #5943 : brson/rust/struct-return, r=graydon

Mac appears to follow the same ABI as MSVC. This fixes one case
but leaves others broken, like windows.
This commit is contained in:
bors 2013-04-18 19:45:48 -07:00
commit d3a58f3797
3 changed files with 5 additions and 9 deletions

View file

@ -11,8 +11,6 @@
// Test a foreign function that accepts and returns a struct
// by value.
// xfail-macos Broken on mac i686
#[deriving(Eq)]
struct TwoU32s {
one: u32, two: u32

View file

@ -8,8 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// xfail-macos Broken on mac i686
struct TwoU32s {
one: u32, two: u32
}