diff options
| author | Henry Jiang <henry.jiang1@ibm.com> | 2025-02-12 13:36:23 -0500 |
|---|---|---|
| committer | Henry Jiang <henry.jiang1@ibm.com> | 2025-02-20 12:03:41 -0500 |
| commit | 2bead2717b6ddfd9dc6d39d41ec031ce9c50e664 (patch) | |
| tree | f5d040e0275aa38e0fe9ab65e75917cff9cda3dd /tests/assembly/stack-protector | |
| parent | 28b83ee59698ae069f5355b8e03f976406f410f5 (diff) | |
| download | rust-2bead2717b6ddfd9dc6d39d41ec031ce9c50e664.tar.gz rust-2bead2717b6ddfd9dc6d39d41ec031ce9c50e664.zip | |
remove : from stack-protector-heuristics-effect.rs filecheck
Diffstat (limited to 'tests/assembly/stack-protector')
| -rw-r--r-- | tests/assembly/stack-protector/stack-protector-heuristics-effect.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/assembly/stack-protector/stack-protector-heuristics-effect.rs b/tests/assembly/stack-protector/stack-protector-heuristics-effect.rs index 57fc601a2e0..fa9e149388d 100644 --- a/tests/assembly/stack-protector/stack-protector-heuristics-effect.rs +++ b/tests/assembly/stack-protector/stack-protector-heuristics-effect.rs @@ -19,7 +19,7 @@ #![allow(incomplete_features)] #![feature(unsized_locals, unsized_fn_params)] -// CHECK-LABEL: emptyfn: +// CHECK-LABEL: emptyfn #[no_mangle] pub fn emptyfn() { // all: __stack_chk_fail @@ -63,7 +63,7 @@ pub fn array_u8_1(f: fn(*const u8)) { // missing-NOT: __stack_chk_fail } -// CHECK-LABEL: array_u8_small: +// CHECK-LABEL: array_u8_small #[no_mangle] pub fn array_u8_small(f: fn(*const u8)) { let a = [0u8; 2]; @@ -80,7 +80,7 @@ pub fn array_u8_small(f: fn(*const u8)) { // missing-NOT: __stack_chk_fail } -// CHECK-LABEL: array_u8_large: +// CHECK-LABEL: array_u8_large #[no_mangle] pub fn array_u8_large(f: fn(*const u8)) { let a = [0u8; 9]; @@ -99,7 +99,7 @@ pub fn array_u8_large(f: fn(*const u8)) { #[derive(Copy, Clone)] pub struct ByteSizedNewtype(u8); -// CHECK-LABEL: array_bytesizednewtype_9: +// CHECK-LABEL: array_bytesizednewtype_9 #[no_mangle] pub fn array_bytesizednewtype_9(f: fn(*const ByteSizedNewtype)) { let a = [ByteSizedNewtype(0); 9]; |
