Skip to content

Commit 2bead27

Browse files
committed
remove : from stack-protector-heuristics-effect.rs filecheck
1 parent 28b83ee commit 2bead27

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

‎tests/assembly/stack-protector/stack-protector-heuristics-effect.rs‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#![allow(incomplete_features)]
2020
#![feature(unsized_locals, unsized_fn_params)]
2121

22-
// CHECK-LABEL: emptyfn:
22+
// CHECK-LABEL: emptyfn
2323
#[no_mangle]
2424
pubfnemptyfn(){
2525
// all: __stack_chk_fail
@@ -63,7 +63,7 @@ pub fn array_u8_1(f: fn(*const u8)) {
6363
// missing-NOT: __stack_chk_fail
6464
}
6565

66-
// CHECK-LABEL: array_u8_small:
66+
// CHECK-LABEL: array_u8_small
6767
#[no_mangle]
6868
pubfnarray_u8_small(f:fn(*constu8)){
6969
let a = [0u8;2];
@@ -80,7 +80,7 @@ pub fn array_u8_small(f: fn(*const u8)) {
8080
// missing-NOT: __stack_chk_fail
8181
}
8282

83-
// CHECK-LABEL: array_u8_large:
83+
// CHECK-LABEL: array_u8_large
8484
#[no_mangle]
8585
pubfnarray_u8_large(f:fn(*constu8)){
8686
let a = [0u8;9];
@@ -99,7 +99,7 @@ pub fn array_u8_large(f: fn(*const u8)) {
9999
#[derive(Copy,Clone)]
100100
pubstructByteSizedNewtype(u8);
101101

102-
// CHECK-LABEL: array_bytesizednewtype_9:
102+
// CHECK-LABEL: array_bytesizednewtype_9
103103
#[no_mangle]
104104
pubfnarray_bytesizednewtype_9(f:fn(*constByteSizedNewtype)){
105105
let a = [ByteSizedNewtype(0);9];

0 commit comments

Comments
 (0)