@@ -283,7 +283,7 @@ def matchdata_without_cxx_apply : GICombineRule<
283
283
(match (G_ZEXT $dst, $src):$mi),
284
284
(apply (G_MUL $dst, $src, $src))>;
285
285
286
- // CHECK: :[[@LINE+1]]:{{[0-9]+}}: error: Expected both a 'match' and 'apply' action in combine rule, or a single 'combine' action
286
+ // CHECK: :[[@LINE+1]]:{{[0-9]+}}: error: expected both a 'match' and 'apply' action in combine rule, or a single 'combine' action
287
287
def missing_apply : GICombineRule<
288
288
(defs root:$dst),
289
289
(match (G_ZEXT $dst, $src))>;
@@ -298,13 +298,13 @@ def combineop_missing_mir : GICombineRule<
298
298
(defs root:$d),
299
299
(combine "return APPLY;")>;
300
300
301
- // CHECK: :[[@LINE+1]]:{{[0-9]+}}: error: Expected both a 'match' and 'apply' action in combine rule, or a single 'combine' action
301
+ // CHECK: :[[@LINE+1]]:{{[0-9]+}}: error: expected both a 'match' and 'apply' action in combine rule, or a single 'combine' action
302
302
def mixed_combine_match : GICombineRule<
303
303
(defs root:$d),
304
304
(combine (G_ZEXT $d, $y), "return APPLY;"),
305
305
(match (G_ZEXT $d, $y))>;
306
306
307
- // CHECK: :[[@LINE+1]]:{{[0-9]+}}: error: Expected both a 'match' and 'apply' action in combine rule, or a single 'combine' action
307
+ // CHECK: :[[@LINE+1]]:{{[0-9]+}}: error: expected both a 'match' and 'apply' action in combine rule, or a single 'combine' action
308
308
def mixed_combine_apply : GICombineRule<
309
309
(defs root:$d),
310
310
(combine "return APPLY;"),
0 commit comments