dawn-cmake/test/ptr_ref/load/local/ptr_function.wgsl.expected.msl

11 lines
164 B
Plaintext

#include <metal_stdlib>
using namespace metal;
kernel void tint_symbol() {
int i = 123;
thread int* const p = &(i);
int const use = (*(p) + 1);
return;
}