brintos

brintos / llvm-project-archived public Read only

0
0
Text · 286 B · 89962b5 Raw
13 lines · cpp
1#if !defined(VERBOSE_TRAP_TEST_CATEGORY) || !defined(VERBOSE_TRAP_TEST_MESSAGE)2#error Please define required macros3#endif4 5struct Dummy {6  void func() { __builtin_verbose_trap(VERBOSE_TRAP_TEST_CATEGORY, VERBOSE_TRAP_TEST_MESSAGE); }7};8 9int main() {10  Dummy{}.func();11  return 0;12}13