https://bugs.kde.org/show_bug.cgi?id=496477
--- Comment #1 from Rob Bresalier <rob.bresal...@nokia.com> --- Below are the contents of atomic_base.h around line 725 where the crash occurs. It is trying to execute "__atomic_store_n(&_M_p, __p, int(__m));" I think this translates to the "stlur" instruction: 715 _GLIBCXX_ALWAYS_INLINE void 716 store(__pointer_type __p, 717 memory_order __m = memory_order_seq_cst) noexcept 718 { 719 memory_order __b = __m & __memory_order_mask; 720 721 __glibcxx_assert(__b != memory_order_acquire); 722 __glibcxx_assert(__b != memory_order_acq_rel); 723 __glibcxx_assert(__b != memory_order_consume); 724 725 __atomic_store_n(&_M_p, __p, int(__m)); 726 } -- You are receiving this mail because: You are watching all bug changes.