blob: c704477f03e00204918729c2182e1c6a0af1fcba [file] [log] [blame]
var<workgroup> arg_0 : atomic<u32>;
fn atomicExchange_0a5dca() -> u32 {
var res : u32 = atomicExchange(&(arg_0), 1u);
return res;
}
@group(0) @binding(0) var<storage, read_write> prevent_dce : u32;
@compute @workgroup_size(1)
fn compute_main() {
prevent_dce = atomicExchange_0a5dca();
}