File tree 2 files changed +5
-5
lines changed
rustc_codegen_gcc/example
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 13
13
14
14
// The minimum alignment guaranteed by the architecture. This value is used to
15
15
// add fast paths for low alignment values.
16
- #[ cfg( all ( any( target_arch = "x86" ,
16
+ #[ cfg( any( target_arch = "x86" ,
17
17
target_arch = "arm" ,
18
18
target_arch = "mips" ,
19
19
target_arch = "powerpc" ,
20
- target_arch = "powerpc64" ) ) ) ]
20
+ target_arch = "powerpc64" ) ) ]
21
21
const MIN_ALIGN : usize = 8 ;
22
- #[ cfg( all ( any( target_arch = "x86_64" ,
22
+ #[ cfg( any( target_arch = "x86_64" ,
23
23
target_arch = "aarch64" ,
24
24
target_arch = "mips64" ,
25
25
target_arch = "s390x" ,
26
- target_arch = "sparc64" ) ) ) ]
26
+ target_arch = "sparc64" ) ) ]
27
27
const MIN_ALIGN : usize = 16 ;
28
28
29
29
pub struct System ;
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ pub fn analyze_source_file(
41
41
}
42
42
43
43
cfg_if:: cfg_if! {
44
- if #[ cfg( all ( any( target_arch = "x86" , target_arch = "x86_64" ) ) ) ] {
44
+ if #[ cfg( any( target_arch = "x86" , target_arch = "x86_64" ) ) ] {
45
45
fn analyze_source_file_dispatch( src: & str ,
46
46
source_file_start_pos: BytePos ,
47
47
lines: & mut Vec <BytePos >,
You can’t perform that action at this time.
0 commit comments