File tree Expand file tree Collapse file tree 2 files changed +21
-5
lines changed
module/icp/asm-aarch64/blake3 Expand file tree Collapse file tree 2 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 32
32
* /
33
33
34
34
#if defined(__aarch64__)
35
+
36
+ / * make gcc <= 9 happy * /
37
+ #if LD_VERSION >= 233010000
38
+ #define CFI_NEGATE_RA_STATE .cfi_negate_ra_state
39
+ #else
40
+ #define CFI_NEGATE_RA_STATE
41
+ #endif
42
+
35
43
.text
36
44
. section .note.gnu.property , "a" , @note
37
45
.p2align 3
51
59
zfs_blake3_compress_in_place_sse2:
52
60
.cfi_startproc
53
61
hint # 25
54
- .cfi_negate_ra_state
62
+ CFI_NEGATE_RA_STATE
55
63
sub sp , sp , # 96
56
64
stp x29 , x30 , [ sp , # 64 ]
57
65
add x29 , sp , # 64
@@ -555,7 +563,7 @@ compress_pre:
555
563
zfs_blake3_compress_xof_sse2:
556
564
.cfi_startproc
557
565
hint # 25
558
- .cfi_negate_ra_state
566
+ CFI_NEGATE_RA_STATE
559
567
sub sp , sp , # 96
560
568
stp x29 , x30 , [ sp , # 64 ]
561
569
add x29 , sp , # 64
@@ -608,7 +616,7 @@ zfs_blake3_compress_xof_sse2:
608
616
zfs_blake3_hash_many_sse2:
609
617
.cfi_startproc
610
618
hint # 25
611
- .cfi_negate_ra_state
619
+ CFI_NEGATE_RA_STATE
612
620
stp d15 , d14 , [ sp , # - 160 ] !
613
621
stp d13 , d12 , [ sp , # 16 ]
614
622
stp d11 , d10 , [ sp , # 32 ]
Original file line number Diff line number Diff line change 32
32
* /
33
33
34
34
#if defined(__aarch64__)
35
+
36
+ / * make gcc <= 9 happy * /
37
+ #if LD_VERSION >= 233010000
38
+ #define CFI_NEGATE_RA_STATE .cfi_negate_ra_state
39
+ #else
40
+ #define CFI_NEGATE_RA_STATE
41
+ #endif
42
+
35
43
.text
36
44
. section .note.gnu.property , "a" , @note
37
45
.p2align 3
51
59
zfs_blake3_compress_in_place_sse41:
52
60
.cfi_startproc
53
61
hint # 25
54
- .cfi_negate_ra_state
62
+ CFI_NEGATE_RA_STATE
55
63
sub sp , sp , # 96
56
64
stp x29 , x30 , [ sp , # 64 ]
57
65
add x29 , sp , # 64
@@ -565,7 +573,7 @@ compress_pre:
565
573
zfs_blake3_compress_xof_sse41:
566
574
.cfi_startproc
567
575
hint # 25
568
- .cfi_negate_ra_state
576
+ CFI_NEGATE_RA_STATE
569
577
sub sp , sp , # 96
570
578
stp x29 , x30 , [ sp , # 64 ]
571
579
add x29 , sp , # 64
You can’t perform that action at this time.
0 commit comments