Skip to content

Commit 902da14

Browse files
committed
Add compile-fail test for rust-lang#33264
Closes rust-lang#33264
1 parent 472bb2b commit 902da14

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

src/test/run-pass/issue-33264.rs

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
#![allow(dead_code, non_upper_case_globals)]
12+
#![feature(asm)]
13+
14+
#[repr(C)]
15+
pub struct D32x4(f32,f32,f32,f32);
16+
17+
impl D32x4 {
18+
fn add(&self, vec: Self) -> Self {
19+
unsafe {
20+
let ret: Self;
21+
asm!("
22+
movaps $1, %xmm1
23+
movaps $2, %xmm2
24+
addps %xmm1, %xmm2
25+
movaps $xmm1, $0
26+
"
27+
: "=r"(ret)
28+
: "1"(self), "2"(vec)
29+
: "xmm1", "xmm2"
30+
);
31+
ret
32+
}
33+
}
34+
}
35+
36+
fn main() { }
37+

0 commit comments

Comments
 (0)