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