blob: 12f1a72cc2bd6b7b60ccc80fe496bbd30fff019b [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
int a = 4;
int3 b = int3(0, 2, 0);
int3 const r = (a % as_type<int3>((as_type<uint3>(b) + as_type<uint3>(b))));
return;
}