Commit 656e11a9 by Ian Lance Taylor

runtime: SPARCv9 fixes for lfstack.

From Rainer Orth.

From-SVN: r195534
parent 83ba4d6f
......@@ -19,7 +19,10 @@
#if __SIZEOF_POINTER__ == 8 && defined(__sparc__)
// SPARC64 uses all 64 bits of virtual addresses. Use low-order three
bits as ABA counter.
// bits as ABA counter.
#undef PTR_BITS
#undef CNT_MASK
#undef PTR_MASK
#define PTR_BITS 0
#define CNT_MASK 7
#define PTR_MASK ((0ull-1)<<3)
......
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