https://github.com/shader-slang/slang
Raw File
Tip revision: 4c9e4de4b68f2612a39e8783e9da89605ecf54e0 authored by Yong He on 26 June 2023, 22:18:06 UTC
Fix DCE on mutable calls in a loop. (#2943)
Tip revision: 4c9e4de
include.slang
//TEST:SIMPLE:
// #include support

int foo() { return 0; }

#include "include-a.slang.h"

int baz() { return bar(); }
back to top