aboutsummaryrefslogtreecommitdiff
path: root/contrib/compiler-rt/lib/ubsan/ubsan_init.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/compiler-rt/lib/ubsan/ubsan_init.h')
-rw-r--r--contrib/compiler-rt/lib/ubsan/ubsan_init.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/contrib/compiler-rt/lib/ubsan/ubsan_init.h b/contrib/compiler-rt/lib/ubsan/ubsan_init.h
deleted file mode 100644
index 18356cfca617..000000000000
--- a/contrib/compiler-rt/lib/ubsan/ubsan_init.h
+++ /dev/null
@@ -1,24 +0,0 @@
-//===-- ubsan_init.h --------------------------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// Initialization function for UBSan runtime.
-//
-//===----------------------------------------------------------------------===//
-#ifndef UBSAN_INIT_H
-#define UBSAN_INIT_H
-
-namespace __ubsan {
-
-// NOTE: This function might take a lock (if .preinit_array initialization is
-// not used). It's generally a bad idea to call it on a fast path.
-void InitIfNecessary();
-
-} // namespace __ubsan
-
-#endif // UBSAN_INIT_H