File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 {
2323pub 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 {
3030pub 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}
You can’t perform that action at this time.
0 commit comments