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