File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tests/assembly/stack-protector Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ pub fn array_u8_1(f: fn(*const u8)) {
56
56
// missing-NOT: __security_check_cookie
57
57
}
58
58
59
- // CHECK-LABEL: array_u8_small:
59
+ // CHECK-LABEL: array_u8_small
60
60
#[ no_mangle]
61
61
pub fn array_u8_small ( f : fn ( * const u8 ) ) {
62
62
let a = [ 0u8 ; 2 ] ;
@@ -73,7 +73,7 @@ pub fn array_u8_small(f: fn(*const u8)) {
73
73
// missing-NOT: __security_check_cookie
74
74
}
75
75
76
- // CHECK-LABEL: array_u8_large:
76
+ // CHECK-LABEL: array_u8_large
77
77
#[ no_mangle]
78
78
pub fn array_u8_large ( f : fn ( * const u8 ) ) {
79
79
let a = [ 0u8 ; 9 ] ;
@@ -92,7 +92,7 @@ pub fn array_u8_large(f: fn(*const u8)) {
92
92
#[ derive( Copy , Clone ) ]
93
93
pub struct ByteSizedNewtype ( u8 ) ;
94
94
95
- // CHECK-LABEL: array_bytesizednewtype_9:
95
+ // CHECK-LABEL: array_bytesizednewtype_9
96
96
#[ no_mangle]
97
97
pub fn array_bytesizednewtype_9 ( f : fn ( * const ByteSizedNewtype ) ) {
98
98
let a = [ ByteSizedNewtype ( 0 ) ; 9 ] ;
You can’t perform that action at this time.
0 commit comments