Skip to content

Commit 53943d6

Browse files
make test work in llvm 9
1 parent 0183b41 commit 53943d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/codegen/arg-return-value-in-reg.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub struct S {
1111
c: u32,
1212
}
1313

14-
// CHECK: define i128 @modify(i128 %0)
14+
// CHECK: define i128 @modify(i128{{( %0)?}})
1515
#[no_mangle]
1616
pub fn modify(s: S) -> S {
1717
S { a: s.a + s.a, b: s.b + s.b, c: s.c + s.c }

0 commit comments

Comments
 (0)