Skip to content

Commit 56fee4c

Browse files
committed
More labels
1 parent 987b459 commit 56fee4c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/assembly/stack-protector/stack-protector-heuristics-effect-windows-64bit.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ pub fn array_u8_1(f: fn(*const u8)) {
5656
// missing-NOT: __security_check_cookie
5757
}
5858

59-
// CHECK-LABEL: array_u8_small:
59+
// CHECK-LABEL: array_u8_small
6060
#[no_mangle]
6161
pub fn array_u8_small(f: fn(*const u8)) {
6262
let a = [0u8; 2];
@@ -73,7 +73,7 @@ pub fn array_u8_small(f: fn(*const u8)) {
7373
// missing-NOT: __security_check_cookie
7474
}
7575

76-
// CHECK-LABEL: array_u8_large:
76+
// CHECK-LABEL: array_u8_large
7777
#[no_mangle]
7878
pub fn array_u8_large(f: fn(*const u8)) {
7979
let a = [0u8; 9];
@@ -92,7 +92,7 @@ pub fn array_u8_large(f: fn(*const u8)) {
9292
#[derive(Copy, Clone)]
9393
pub struct ByteSizedNewtype(u8);
9494

95-
// CHECK-LABEL: array_bytesizednewtype_9:
95+
// CHECK-LABEL: array_bytesizednewtype_9
9696
#[no_mangle]
9797
pub fn array_bytesizednewtype_9(f: fn(*const ByteSizedNewtype)) {
9898
let a = [ByteSizedNewtype(0); 9];

0 commit comments

Comments
 (0)