Skip to content

Commit fcb37cb

Browse files
committed
Fix asm! from AT&T to Intel syntax
1 parent b97a33b commit fcb37cb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

library/core/src/num/dec2flt/algorithm.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ mod fpu_precision {
6262
// any `u16`
6363
unsafe {
6464
asm!(
65-
"fldcw ({})",
65+
"fldcw word ptr [{}]",
6666
in(reg) &cw,
6767
options(nostack),
6868
)
@@ -86,7 +86,7 @@ mod fpu_precision {
8686
// any `u16`
8787
unsafe {
8888
asm!(
89-
"fnstcw ({})",
89+
"fnstcw word ptr [{}]",
9090
in(reg) &mut cw,
9191
options(nostack),
9292
)

library/std/src/sys/sgx/abi/mem.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pub fn image_base() -> u64 {
3636
let base: u64;
3737
unsafe {
3838
asm!(
39-
"lea IMAGE_BASE(%rip), {}",
39+
"lea {}, qword ptr [rip + IMAGE_BASE]",
4040
lateout(reg) base,
4141
options(nostack, preserves_flags, nomem, pure),
4242
)

0 commit comments

Comments
 (0)