We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82fe59f commit a45c789Copy full SHA for a45c789
src/Common/Compiler.inl
@@ -14,10 +14,12 @@
14
#define NO_INLINE __attribute__((noinline))
15
#define FORCE_INLINE __attribute__((always_inline)) inline
16
#define ALIGN(a) __attribute__((aligned(a)))
17
+#define DEBUG_BREAK asm("int $3")
18
#elif defined(_MSC_VER)
19
#define NO_INLINE __declspec(noinline)
20
#define FORCE_INLINE __forceinline
21
#define ALIGN(a) __declspec(align(a))
22
+#define DEBUG_BREAK _asm { int 3 }
23
#define __thread __declspec(thread)
24
#endif
25
0 commit comments