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