18 lines
186 B
Plaintext
18 lines
186 B
Plaintext
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
uint x_50() {
|
||
|
return 42u;
|
||
|
}
|
||
|
|
||
|
void x_100_1() {
|
||
|
uint const x_1 = x_50();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
fragment void x_100() {
|
||
|
x_100_1();
|
||
|
return;
|
||
|
}
|
||
|
|