https://github.com/shader-slang/slang
Raw File
Tip revision: cc753f32c83276a66db2d1f558a21e206aae4549 authored by jsmall-nvidia on 26 March 2020, 13:35:35 UTC
Disable CPU tests on TC. (#1295)
Tip revision: cc753f3
undef.slang
//TEST:SIMPLE:
// #undef support

// warning: undef of something not defined
#undef FOO

#define BAR 1.0f

float foo() { return BAR + 2.0; }

#ifdef BAR
// okay
#else
#error not okay
#endif

#undef BAR

typedef float BAR;

BAR bar() { return 2.0; }

#if !defined(BAR)
// okay
#else
#error not okay
#endif


#define FOO

#undef FOO
back to top