blob: f22133755dd76478750f212f85eac4a33835ed9c [file] [log] [blame]
@group(0) @binding(0) var<storage, read_write> prevent_dce : i32;
var<workgroup> arg_0 : atomic<i32>;
fn atomicMax_a89cc3() -> i32 {
var arg_1 = 1i;
var res : i32 = atomicMax(&(arg_0), arg_1);
return res;
}
@compute @workgroup_size(1)
fn compute_main() {
prevent_dce = atomicMax_a89cc3();
}