Commit 38801de5 by Jakub Jelinek Committed by Jakub Jelinek

* gcc.dg/pr57134.c: Use empty inline asm string literal.

From-SVN: r245865
parent 7278b0a2
2017-03-03 Jakub Jelinek <jakub@redhat.com>
* gcc.dg/pr57134.c: Use empty inline asm string literal.
2017-03-03 Marek Polacek <polacek@redhat.com> 2017-03-03 Marek Polacek <polacek@redhat.com>
PR c++/79791 PR c++/79791
......
...@@ -18,7 +18,7 @@ static __inline__ __attribute__((always_inline)) int64_t ...@@ -18,7 +18,7 @@ static __inline__ __attribute__((always_inline)) int64_t
atomic64_read(const atomic64_t *v) atomic64_read(const atomic64_t *v)
{ {
int64_t t; int64_t t;
__asm__ __volatile__("# %0, %1" : "=r"(t) : "m"(v->counter)); __asm__ __volatile__("" : "=r"(t) : "m"(v->counter));
return t; return t;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment