Proteus
Programmable JIT compilation and optimization for C/C++ using LLVM
Loading...
Searching...
No Matches
Debug.h
Go to the documentation of this file.
1#ifndef PROTEUS_DEBUG_H
2#define PROTEUS_DEBUG_H
3
4#if PROTEUS_ENABLE_DEBUG
5#define PROTEUS_DBG(x) x;
6#else
7#define PROTEUS_DBG(x)
8#endif
9
10#endif