Extended Description
On PowerPC:
% clang -o a.out bug.bc
% ./a.out
FAILED: __atomic_compare_exchange_n() failed.
%
On x86:
% clang -o a.out bug.bc
warning: overriding the module target triple with x86_64-unknown-linux-gnu
[-Woverride-module]
1 warning generated.
% ./a.out
PASSED
%