File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ use core::ops::{Deref, DerefMut};
67
67
// - https://www.intel.com/content/dam/www/public/us/en/documents/manuals/64-ia-32-architectures-optimization-manual.pdf
68
68
// - https://github.com/facebook/folly/blob/1b5288e6eea6df074758f877c849b6e73bbb9fbb/folly/lang/Align.h#L107
69
69
//
70
- // ARM 's big.LITTLE architecture has asymmetric cores and "big" cores have 128-byte cache line size.
70
+ // aarch64/arm64ec 's big.LITTLE architecture has asymmetric cores and "big" cores have 128-byte cache line size.
71
71
//
72
72
// Sources:
73
73
// - https://www.mono-project.com/news/2016/09/12/arm64-icache/
@@ -81,6 +81,7 @@ use core::ops::{Deref, DerefMut};
81
81
any(
82
82
target_arch = "x86_64" ,
83
83
target_arch = "aarch64" ,
84
+ target_arch = "arm64ec" ,
84
85
target_arch = "powerpc64" ,
85
86
) ,
86
87
repr( align( 128 ) )
@@ -130,6 +131,7 @@ use core::ops::{Deref, DerefMut};
130
131
not( any(
131
132
target_arch = "x86_64" ,
132
133
target_arch = "aarch64" ,
134
+ target_arch = "arm64ec" ,
133
135
target_arch = "powerpc64" ,
134
136
target_arch = "arm" ,
135
137
target_arch = "mips" ,
You can’t perform that action at this time.
0 commit comments