9#define ULANG_SILENCE_SECURITY_WARNING_START \
10 _Pragma("clang diagnostic push") \
11 _Pragma("clang diagnostic ignored \"-Wformat-security\"")
12#define ULANG_SILENCE_SECURITY_WARNING_END \
13 _Pragma("clang diagnostic pop")
19#if defined(__aarch64__)
20 #define ULANG_BREAK() __asm__(".inst 0xd4200000")
22 #define ULANG_BREAK() __asm__("trap")
24 #define ULANG_BREAK() __asm__ volatile("int $3")
Definition VVMEngineEnvironment.h:23
void LogDebugMessage(const char *Message)
Definition LinuxCommon.h:41
bool IsDebuggerPresent()
Definition LinuxCommon.h:33