Skip to content

Commit 673bd9a

Browse files
committed
chore: update test case
1 parent 35f62ab commit 673bd9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/codegen/params_count.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ extern crate mini_core;
1313

1414
// expect three int params
1515
// CHECK-LABEL: foo
16-
// CHECK: (int32_t {{[a-zA-Z_][a-zA-Z0-9_]*}}, int32_t {{[a-zA-Z_][a-zA-Z0-9_]*}}, int32_t {{[a-zA-Z_][a-zA-Z0-9_]*}})
16+
// CHECK: (int32_t {{[[:alnum:]_]*}}, int32_t {{[[:alnum:]_]*}}, int32_t {{[[:alnum:]_]*}})
1717
// CHECK: return 0;
1818
#[no_mangle]
1919
pub fn foo(_x: i32, _y: i32, _z: i32) -> i32 {

0 commit comments

Comments
 (0)