Sign in
dawn
/
tint
/
refs/heads/chromium/4611
/
.
/
test
/
unittest
/
reader
/
spirv
/
SpvParserTest_EmitFunctions_CalleePrecedesCaller.spvasm.expected.wgsl
blob: 281280156989739448ad931936eded2fc5ae2a39 [
file
] [
log
] [
blame
] [
edit
]
fn leaf
()
->
u32
{
return
0u
;
}
fn branch
()
->
u32
{
let
leaf_result
:
u32
=
leaf
();
return
leaf_result
;
}
fn root
()
{
let
branch_result
:
u32
=
branch
();
return
;
}
fn x_100_1
()
{
return
;
}
[[
stage
(
fragment
)]]
fn x_100
()
{
x_100_1
();
}