mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-24 06:10:12 +00:00
[flang][msvc] Fix compilation of RuntimeGtest
Removes alternate spelling 'not' with '!'. Reviewed by: ashermancinelli, awarzynski, Meinersbur Differential revision: https://reviews.llvm.org/D100442
This commit is contained in:
parent
41b71f718b
commit
080d48f279
@ -28,7 +28,7 @@
|
||||
// Register the crash handler above when creating each unit test in this suite
|
||||
void CrashHandlerFixture::SetUp() {
|
||||
static bool isCrashHanlderRegistered{false};
|
||||
if (not isCrashHanlderRegistered)
|
||||
if (!isCrashHanlderRegistered)
|
||||
Fortran::runtime::Terminator::RegisterCrashHandler(CatchCrash);
|
||||
isCrashHanlderRegistered = true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user