2018-09-11 05:47:23 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
|
|
|
|
#ifndef _MSC_VER // Not supported by clang-cl yet
|
|
|
|
|
2019-09-24 20:52:11 +03:00
|
|
|
extern "C" const char* __ubsan_default_options() {
|
|
|
|
return "print_stacktrace=1";
|
|
|
|
}
|
2018-09-11 05:47:23 +03:00
|
|
|
|
2019-10-16 19:09:21 +03:00
|
|
|
extern "C" const char* __ubsan_default_suppressions() { return ""; }
|
|
|
|
|
2018-09-11 05:47:23 +03:00
|
|
|
#endif
|