Skip to content

Commit

Permalink
Revert "ck_pr/aarch64: Specify output operands for ck_pr_md_store_*"
Browse files Browse the repository at this point in the history
This reverts commit affccdc.

Mark asked for this to be reverted, and will submit a new patch.
  • Loading branch information
cognet committed Feb 2, 2024
1 parent 0c9d3df commit 6162a0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/gcc/aarch64/ck_pr.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ CK_PR_LOAD_S_64(double, double, "ldr")
ck_pr_md_store_##S(M *target, T v) \
{ \
__asm__ __volatile__(I " %w1, [%0]" \
: "=m" (*(T **)target) \
: \
: "r" (target), \
"r" (v) \
: "memory"); \
Expand All @@ -149,7 +149,7 @@ CK_PR_LOAD_S_64(double, double, "ldr")
ck_pr_md_store_##S(M *target, T v) \
{ \
__asm__ __volatile__(I " %1, [%0]" \
: "=m" (*(T **)target) \
: \
: "r" (target), \
"r" (v) \
: "memory"); \
Expand Down

0 comments on commit 6162a0b

Please sign in to comment.