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)) {
5656 // missing-NOT: __security_check_cookie
5757}
5858
59- // CHECK-LABEL: array_u8_small:
59+ // CHECK-LABEL: array_u8_small
6060#[ no_mangle]
6161pub 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]
7878pub 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 ) ]
9393pub struct ByteSizedNewtype ( u8 ) ;
9494
95- // CHECK-LABEL: array_bytesizednewtype_9:
95+ // CHECK-LABEL: array_bytesizednewtype_9
9696#[ no_mangle]
9797pub fn array_bytesizednewtype_9 ( f : fn ( * const ByteSizedNewtype ) ) {
9898 let a = [ ByteSizedNewtype ( 0 ) ; 9 ] ;
You can’t perform that action at this time.
0 commit comments