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