@@ -54,7 +54,7 @@ local_tee_type_mismatch:
54
54
55
55
global_get_missing_globaltype:
56
56
.functype global_get_missing_globaltype () -> ()
57
- # CHECK: :[[@LINE+1]]:14: error: symbol foo missing .globaltype
57
+ # CHECK: :[[@LINE+1]]:14: error: symbol foo: missing .globaltype
58
58
global.get foo
59
59
end_function
60
60
@@ -66,7 +66,7 @@ global_get_expected_expression_operand:
66
66
67
67
global_set_missing_globaltype:
68
68
.functype global_set_missing_globaltype () -> ()
69
- # CHECK: :[[@LINE+1]]:14: error: symbol foo missing .globaltype
69
+ # CHECK: :[[@LINE+1]]:14: error: symbol foo: missing .globaltype
70
70
global.set foo
71
71
end_function
72
72
@@ -99,7 +99,7 @@ table_get_expected_expression_operand:
99
99
100
100
table_get_missing_tabletype:
101
101
.functype table_get_missing_tabletype () -> ()
102
- # CHECK: :[[@LINE+1]]:13: error: symbol foo missing .tabletype
102
+ # CHECK: :[[@LINE+1]]:13: error: symbol foo: missing .tabletype
103
103
table.get foo
104
104
end_function
105
105
@@ -126,7 +126,7 @@ table_set_expected_expression_operand:
126
126
127
127
table_set_missing_tabletype:
128
128
.functype table_set_missing_tabletype () -> ()
129
- # CHECK: :[[@LINE+1]]:13: error: symbol foo missing .tabletype
129
+ # CHECK: :[[@LINE+1]]:13: error: symbol foo: missing .tabletype
130
130
table.set foo
131
131
end_function
132
132
@@ -166,7 +166,7 @@ table_fill_expected_expression_operand:
166
166
167
167
table_fill_missing_tabletype:
168
168
.functype table_fill_missing_tabletype () -> ()
169
- # CHECK: :[[@LINE+1]]:14: error: symbol foo missing .tabletype
169
+ # CHECK: :[[@LINE+1]]:14: error: symbol foo: missing .tabletype
170
170
table.fill foo
171
171
end_function
172
172
@@ -235,7 +235,7 @@ table_grow_non_exist_table:
235
235
.functype table_grow_non_exist_table (externref, i32) -> (i32)
236
236
local.get 0
237
237
local.get 1
238
- # CHECK: [[@LINE+1]]:14: error: symbol invalid_table missing .tabletype
238
+ # CHECK: [[@LINE+1]]:14: error: symbol invalid_table: missing .tabletype
239
239
table.grow invalid_table
240
240
end_function
241
241
@@ -554,7 +554,7 @@ call_superfluous_value_at_end:
554
554
555
555
call_missing_functype:
556
556
.functype call_missing_functype () -> ()
557
- # CHECK: :[[@LINE+1]]:8: error: symbol no_functype missing .functype
557
+ # CHECK: :[[@LINE+1]]:8: error: symbol no_functype: missing .functype
558
558
call no_functype
559
559
end_function
560
560
@@ -579,7 +579,7 @@ return_call_type_mismatch:
579
579
580
580
return_call_missing_functype:
581
581
.functype return_call_missing_functype () -> ()
582
- # CHECK: :[[@LINE+1]]:15: error: symbol no_functype missing .functype
582
+ # CHECK: :[[@LINE+1]]:15: error: symbol no_functype: missing .functype
583
583
return_call no_functype
584
584
end_function
585
585
@@ -594,7 +594,7 @@ catch_expected_expression_operand:
594
594
catch_missing_tagtype:
595
595
.functype catch_missing_tagtype () -> ()
596
596
try
597
- # CHECK: :[[@LINE+1]]:9: error: symbol no_tagtype missing .tagtype
597
+ # CHECK: :[[@LINE+1]]:9: error: symbol no_tagtype: missing .tagtype
598
598
catch no_tagtype
599
599
end_try
600
600
end_function
0 commit comments