[llvm] [LLVM][Instrumentation] Add numerical sanitizer (PR #85916)
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 20 13:43:37 PDT 2024
================
@@ -0,0 +1,2191 @@
+//===-- NumericalStabilitySanitizer.cpp -----------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+//
+// This file is a part of NumericalStabilitySanitizer.
+//
+//===----------------------------------------------------------------------===//
+
+#include "llvm/Transforms/Instrumentation/NumericalStabilitySanitizer.h"
+
+#include <cstdint>
----------------
MaskRay wrote:
system header after llvm headers https://llvm.org/docs/CodingStandards.html#include-style
https://github.com/llvm/llvm-project/pull/85916
More information about the llvm-commits
mailing list