mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-01 02:33:44 +00:00
Suppress a MSVC warning complaining about the code working as intended.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171290 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0184a841d3
commit
c9bdcac412
@ -34,14 +34,27 @@ self_process *process::get_self() {
|
|||||||
return SP;
|
return SP;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
// Visual Studio complains that the self_process destructor never exits. This
|
||||||
|
// doesn't make much sense, as that's the whole point of calling abort... Just
|
||||||
|
// silence this warning.
|
||||||
|
#pragma warning(push)
|
||||||
|
#pragma warning(disable:4722)
|
||||||
|
#endif
|
||||||
|
|
||||||
// The destructor for the self_process subclass must never actually be
|
// The destructor for the self_process subclass must never actually be
|
||||||
// executed. There should be at most one instance of this class, and that
|
// executed. There should be at most one instance of this class, and that
|
||||||
// instance should live until the process terminates to avoid the potential for
|
// instance should live until the process terminates to avoid the potential for
|
||||||
// racy accesses during shutdown.
|
// racy accesses during shutdown.
|
||||||
self_process::~self_process() {
|
self_process::~self_process() {
|
||||||
|
assert(TempDirectory->exists() && "Who has removed TempDirectory?");
|
||||||
llvm_unreachable("This destructor must never be executed!");
|
llvm_unreachable("This destructor must never be executed!");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#pragma warning(pop)
|
||||||
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Include the platform-specific parts of this class.
|
// Include the platform-specific parts of this class.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user