summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Gallop <russell.gallop@sony.com>2020-09-10 17:22:51 +0100
committerRussell Gallop <russell.gallop@sony.com>2021-01-21 16:55:52 +0000
commitc139623ee0f6507bc95054c0f43a8cc43eb52e07 (patch)
tree71f81042559b124538cb86f2ca845c74aedf201a
parent6deedb93bb508ffeb0c2fefe1d2a2c749aa7cc70 (diff)
downloadllvm-c139623ee0f6507bc95054c0f43a8cc43eb52e07.tar.gz
Rename wwindows.[cpp|h] to win.[cpp|h]
Analagous with sanitizer_win.[cpp|h]
-rw-r--r--compiler-rt/lib/scudo/standalone/CMakeLists.txt4
-rw-r--r--compiler-rt/lib/scudo/standalone/common.h2
-rw-r--r--compiler-rt/lib/scudo/standalone/win.cpp (renamed from compiler-rt/lib/scudo/standalone/wwindows.cpp)4
-rw-r--r--compiler-rt/lib/scudo/standalone/win.h (renamed from compiler-rt/lib/scudo/standalone/wwindows.h)8
4 files changed, 9 insertions, 9 deletions
diff --git a/compiler-rt/lib/scudo/standalone/CMakeLists.txt b/compiler-rt/lib/scudo/standalone/CMakeLists.txt
index a9ee5e05f7e4..b45c7d728767 100644
--- a/compiler-rt/lib/scudo/standalone/CMakeLists.txt
+++ b/compiler-rt/lib/scudo/standalone/CMakeLists.txt
@@ -82,8 +82,8 @@ set(SCUDO_HEADERS
vector.h
wrappers_c_checks.h
wrappers_c.h
+ win.h
win_defs.h
- wwindows.h
include/scudo/interface.h
)
@@ -99,7 +99,7 @@ set(SCUDO_SOURCES
release.cpp
report.cpp
string_utils.cpp
- wwindows.cpp
+ win.cpp
)
# Enable the SSE 4.2 instruction set for crc32_hw.cpp, if available.
diff --git a/compiler-rt/lib/scudo/standalone/common.h b/compiler-rt/lib/scudo/standalone/common.h
index 6e4ffbca6a97..919363e9af04 100644
--- a/compiler-rt/lib/scudo/standalone/common.h
+++ b/compiler-rt/lib/scudo/standalone/common.h
@@ -13,7 +13,7 @@
#include "fuchsia.h"
#include "linux.h"
-#include "wwindows.h"
+#include "win.h"
#include <stddef.h>
#include <string.h>
diff --git a/compiler-rt/lib/scudo/standalone/wwindows.cpp b/compiler-rt/lib/scudo/standalone/win.cpp
index abad88da7cc7..62119af0cea5 100644
--- a/compiler-rt/lib/scudo/standalone/wwindows.cpp
+++ b/compiler-rt/lib/scudo/standalone/win.cpp
@@ -1,4 +1,4 @@
-//===-- wwindows.cpp --------------------------------------------*- C++ -*-===//
+//===-- win.cpp --------------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
@@ -11,7 +11,7 @@
#if SCUDO_WINDOWS
#include "common.h"
-#include "wwindows.h"
+#include "win.h"
#include "mutex.h"
#include "string_utils.h"
diff --git a/compiler-rt/lib/scudo/standalone/wwindows.h b/compiler-rt/lib/scudo/standalone/win.h
index f750d948a650..edaedc28a808 100644
--- a/compiler-rt/lib/scudo/standalone/wwindows.h
+++ b/compiler-rt/lib/scudo/standalone/win.h
@@ -1,4 +1,4 @@
-//===-- wwindows.h ----------------------------------------------*- C++ -*-===//
+//===-- win.h ----------------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
@@ -6,8 +6,8 @@
//
//===----------------------------------------------------------------------===//
-#ifndef SCUDO_WWINDOWS_H_
-#define SCUDO_WWINDOWS_H_
+#ifndef SCUDO_WIN_H_
+#define SCUDO_WIN_H_
#include "platform.h"
@@ -22,4 +22,4 @@ struct MapPlatformData {};
#endif // SCUDO_WINDOWS
-#endif // SCUDO_WWINDOWS_H_
+#endif // SCUDO_WIN_H_