Files
llvm/libclc/clc
Wenju He fa417d78b1 [libclc] Fix floating-point __clc_atomic_store/exchange cast mismatch (#167625)
When pointer element type is casted to integer type, the stored value
should be casted to integer type to avoid type mistmatch. LLVM IR change
in function _Z18__clc_atomic_storePU3AS1Vffii:
    >   %5 = bitcast float %1 to i32   (New)
    <   %5 = fptosi float %1 to i32    (Old)
2025-11-13 08:03:49 +08:00
..