https://github.com/shader-slang/slang
Raw File
Tip revision: a4dd936ce05f4aa1342b4ce98dd0ac8c4272e331 authored by Tim Foley on 13 June 2018, 20:56:30 UTC
Fix some issues around codegen for l-values and assignment (#601)
Tip revision: a4dd936
line.slang
//TEST:SIMPLE:
// #line support

FooA a() { return 0; }

#line 99 "b.slang"
FooB b() { return 0; }

#line default
FooC c() { return 0; }

#line 603 "d.slang"
FooD d() { return 0; }

#line 40
FooE e() { return 0; }

#line
FooF f() { return 0; }
back to top