mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-22 13:29:44 +00:00
Silence some Win64 clang-cl warnings about unused stuff due to ifdefs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230685 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7a481adc12
commit
b2d565708c
@ -184,7 +184,8 @@ namespace llvm {
|
||||
/// AvoidMessageBoxHook - Emulates hitting "retry" from an "abort, retry,
|
||||
/// ignore" CRT debug report dialog. "retry" raises an exception which
|
||||
/// ultimately triggers our stack dumper.
|
||||
static int AvoidMessageBoxHook(int ReportType, char *Message, int *Return) {
|
||||
static LLVM_ATTRIBUTE_UNUSED int
|
||||
AvoidMessageBoxHook(int ReportType, char *Message, int *Return) {
|
||||
// Set *Return to the retry code for the return value of _CrtDbgReport:
|
||||
// http://msdn.microsoft.com/en-us/library/8hyw4sy7(v=vs.71).aspx
|
||||
// This may also trigger just-in-time debugging via DebugBreak().
|
||||
|
@ -35,6 +35,8 @@ class TempEnvVar {
|
||||
#if HAVE_SETENV
|
||||
// Assume setenv and unsetenv come together.
|
||||
unsetenv(name);
|
||||
#else
|
||||
(void)name; // Suppress -Wunused-private-field.
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user