Skip to content

Commit ae078da

Browse files
committed
Fix test failure
1 parent 0490b50 commit ae078da

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/codegen-llvm/inline-always-callsite.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ pub fn single_target_feature() -> i32 {
1919
#[inline(always)]
2020
#[target_feature(enable = "neon,i8mm")]
2121
#[no_mangle]
22-
// CHECK: define noundef i32 @multiple_target_features() unnamed_addr #1 {
22+
// CHECK: define{{( noundef)?}} i32 @multiple_target_features() unnamed_addr #1 {
2323
pub fn multiple_target_features() -> i32 {
24-
// CHECK: %_0 = call noundef i32 @single_target_feature() #3
24+
// CHECK: %_0 = call{{( noundef)?}} i32 @single_target_feature() #3
2525
single_target_feature()
2626
}
2727

2828
#[no_mangle]
29-
// CHECK: define noundef i32 @inherits_from_global() unnamed_addr #2 {
29+
// CHECK: define{{( noundef)?}} i32 @inherits_from_global() unnamed_addr #2 {
3030
pub fn inherits_from_global() -> i32 {
3131
unsafe {
32-
// CHECK: %_0 = call noundef i32 @single_target_feature() #3
32+
// CHECK: %_0 = call{{( noundef)?}} i32 @single_target_feature() #3
3333
single_target_feature()
3434
}
3535
}

0 commit comments

Comments
 (0)