https://github.com/shader-slang/slang
Raw File
Tip revision: 6dca7e39292e6c5672440f6f1dbfb204a79b90d2 authored by Yong He on 03 February 2024, 20:29:12 UTC
Fix spirv emit that leads to pathological downstream time. (#3546)
Tip revision: 6dca7e3
elif-eval.slang
//TEST:SIMPLE:

#ifndef SOME_MACRO
#   error Not this one!
// The expression after #elif shouldn't be evaluated, because #ifndef evaluated as true
#elif SOME_OTHER_MACRO
#else
#error This isn't valid!
#endif
back to top