blob: 541f1849d134e9b06900b0f0074790841f9c7a7f [file] [log] [blame] [edit]
///////////////////////////////////////////////////////////////////////////////
// //
// assert.cpp //
// Copyright (C) Microsoft Corporation. All rights reserved. //
// This file is distributed under the University of Illinois Open Source //
// License. See LICENSE.TXT for details. //
// //
///////////////////////////////////////////////////////////////////////////////
#include "assert.h"
#include "windows.h"
void llvm_assert(_In_z_ const char *_Message,
_In_z_ const char *_File,
_In_ unsigned _Line) {
RaiseException(STATUS_LLVM_ASSERT, 0, 0, 0);
}