diff options
-rw-r--r-- | orc-rt/include/CMakeLists.txt | 10 | ||||
-rw-r--r-- | orc-rt/include/orc-rt/BitmaskEnum.h (renamed from orc-rt/include/orc-rt/bitmask-enum.h) | 10 | ||||
-rw-r--r-- | orc-rt/include/orc-rt/Compiler.h (renamed from orc-rt/include/orc-rt/compiler.h) | 2 | ||||
-rw-r--r-- | orc-rt/include/orc-rt/Error.h (renamed from orc-rt/include/orc-rt/error.h) | 6 | ||||
-rw-r--r-- | orc-rt/include/orc-rt/Math.h (renamed from orc-rt/include/orc-rt/math.h) | 2 | ||||
-rw-r--r-- | orc-rt/include/orc-rt/RTTI.h (renamed from orc-rt/include/orc-rt/rtti.h) | 2 | ||||
-rw-r--r-- | orc-rt/lib/executor/CMakeLists.txt | 2 | ||||
-rw-r--r-- | orc-rt/lib/executor/RTTI.cpp (renamed from orc-rt/lib/executor/rtti.cpp) | 4 | ||||
-rw-r--r-- | orc-rt/unittests/BitmaskEnumTest.cpp (renamed from orc-rt/unittests/bitmask-enum-test.cpp) | 6 | ||||
-rw-r--r-- | orc-rt/unittests/CMakeLists.txt | 8 | ||||
-rw-r--r-- | orc-rt/unittests/ErrorTest.cpp (renamed from orc-rt/unittests/error-test.cpp) | 4 | ||||
-rw-r--r-- | orc-rt/unittests/MathTest.cpp (renamed from orc-rt/unittests/math-test.cpp) | 6 | ||||
-rw-r--r-- | orc-rt/unittests/RTTITest.cpp (renamed from orc-rt/unittests/rtti-test.cpp) | 2 |
13 files changed, 32 insertions, 32 deletions
diff --git a/orc-rt/include/CMakeLists.txt b/orc-rt/include/CMakeLists.txt index 29df812..3354554 100644 --- a/orc-rt/include/CMakeLists.txt +++ b/orc-rt/include/CMakeLists.txt @@ -1,10 +1,10 @@ set(ORC_RT_HEADERS orc-rt-c/orc-rt.h - orc-rt/bitmask-enum.h - orc-rt/error.h - orc-rt/compiler.h - orc-rt/math.h - orc-rt/rtti.h + orc-rt/BitmaskEnum.h + orc-rt/Compiler.h + orc-rt/Error.h + orc-rt/Math.h + orc-rt/RTTI.h orc-rt/span.h orc-rt/unique-function.h ) diff --git a/orc-rt/include/orc-rt/bitmask-enum.h b/orc-rt/include/orc-rt/BitmaskEnum.h index adc9542..f3aff32 100644 --- a/orc-rt/include/orc-rt/bitmask-enum.h +++ b/orc-rt/include/orc-rt/BitmaskEnum.h @@ -1,4 +1,4 @@ -//===---- bitmask-enum.h - Enable bitmask operations on enums ---*- C++ -*-===// +//===---- BitmaskEnum.h - Enable bitmask operations on enums ----*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. @@ -13,10 +13,10 @@ // //===----------------------------------------------------------------------===// -#ifndef ORC_RT_BITMASK_ENUM_H -#define ORC_RT_BITMASK_ENUM_H +#ifndef ORC_RT_BITMASKENUM_H +#define ORC_RT_BITMASKENUM_H -#include "math.h" +#include "Math.h" #include <cassert> #include <type_traits> @@ -158,4 +158,4 @@ constexpr E &operator^=(E &LHS, E RHS) noexcept { } // namespace orc_rt -#endif // ORC_RT_BITMASK_ENUM_H +#endif // ORC_RT_BITMASKENUM_H diff --git a/orc-rt/include/orc-rt/compiler.h b/orc-rt/include/orc-rt/Compiler.h index 1a17672..e0c0c098 100644 --- a/orc-rt/include/orc-rt/compiler.h +++ b/orc-rt/include/orc-rt/Compiler.h @@ -1,4 +1,4 @@ -//===--------- compiler.h - Compiler abstraction support --------*- C++ -*-===// +//===--------- Compiler.h - Compiler abstraction support --------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/orc-rt/include/orc-rt/error.h b/orc-rt/include/orc-rt/Error.h index 478ba5b..a25c783 100644 --- a/orc-rt/include/orc-rt/error.h +++ b/orc-rt/include/orc-rt/Error.h @@ -1,4 +1,4 @@ -//===-------- error.h - Enforced error checking for ORC RT ------*- C++ -*-===// +//===-------- Error.h - Enforced error checking for ORC RT ------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. @@ -9,8 +9,8 @@ #ifndef ORC_RT_ERROR_H #define ORC_RT_ERROR_H -#include "orc-rt/compiler.h" -#include "orc-rt/rtti.h" +#include "orc-rt/Compiler.h" +#include "orc-rt/RTTI.h" #include <cassert> #include <cstdlib> diff --git a/orc-rt/include/orc-rt/math.h b/orc-rt/include/orc-rt/Math.h index 4dd6ddd..59a2161 100644 --- a/orc-rt/include/orc-rt/math.h +++ b/orc-rt/include/orc-rt/Math.h @@ -1,4 +1,4 @@ -//===--------- math.h - Math helpers for the ORC runtime --------*- C++ -*-===// +//===--------- Math.h - Math helpers for the ORC runtime --------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/orc-rt/include/orc-rt/rtti.h b/orc-rt/include/orc-rt/RTTI.h index 3097edf..7342052 100644 --- a/orc-rt/include/orc-rt/rtti.h +++ b/orc-rt/include/orc-rt/RTTI.h @@ -1,4 +1,4 @@ -//===------------- rtti.h - RTTI support for ORC RT -------------*- C++ -*-===// +//===------------- RTTI.h - RTTI support for ORC RT -------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/orc-rt/lib/executor/CMakeLists.txt b/orc-rt/lib/executor/CMakeLists.txt index 40035bb..331954c 100644 --- a/orc-rt/lib/executor/CMakeLists.txt +++ b/orc-rt/lib/executor/CMakeLists.txt @@ -1,6 +1,6 @@ set(files orc-rt-executor.cpp - rtti.cpp + RTTI.cpp ) add_library(orc-rt-executor STATIC ${files}) diff --git a/orc-rt/lib/executor/rtti.cpp b/orc-rt/lib/executor/RTTI.cpp index 8c6d27f..89e3a07 100644 --- a/orc-rt/lib/executor/rtti.cpp +++ b/orc-rt/lib/executor/RTTI.cpp @@ -1,4 +1,4 @@ -//===- rtti.cpp -----------------------------------------------------------===// +//===- RTTI.cpp -----------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. @@ -14,7 +14,7 @@ // //===----------------------------------------------------------------------===// -#include "orc-rt/rtti.h" +#include "orc-rt/RTTI.h" namespace orc_rt { diff --git a/orc-rt/unittests/bitmask-enum-test.cpp b/orc-rt/unittests/BitmaskEnumTest.cpp index 3367a8d..f3e791d 100644 --- a/orc-rt/unittests/bitmask-enum-test.cpp +++ b/orc-rt/unittests/BitmaskEnumTest.cpp @@ -1,4 +1,4 @@ -//===-- bitmask-enum-test.cpp ---------------------------------------------===// +//===- BitmaskEnumTest.cpp ------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. @@ -6,11 +6,11 @@ // //===----------------------------------------------------------------------===// // -// This file is a part of the ORC runtime. +// Test bitmask-enum support APIs. // //===----------------------------------------------------------------------===// -#include "orc-rt/bitmask-enum.h" +#include "orc-rt/BitmaskEnum.h" #include "gtest/gtest.h" #include <sstream> diff --git a/orc-rt/unittests/CMakeLists.txt b/orc-rt/unittests/CMakeLists.txt index 3f33cb1..09696da 100644 --- a/orc-rt/unittests/CMakeLists.txt +++ b/orc-rt/unittests/CMakeLists.txt @@ -12,10 +12,10 @@ function(add_orc_rt_unittest test_dirname) endfunction() add_orc_rt_unittest(CoreTests - bitmask-enum-test.cpp - error-test.cpp - math-test.cpp - rtti-test.cpp + BitmaskEnumTest.cpp + ErrorTest.cpp + MathTest.cpp + RTTITest.cpp span-test.cpp unique-function-test.cpp DISABLE_LLVM_LINK_LLVM_DYLIB diff --git a/orc-rt/unittests/error-test.cpp b/orc-rt/unittests/ErrorTest.cpp index 32651c1..47c67b8 100644 --- a/orc-rt/unittests/error-test.cpp +++ b/orc-rt/unittests/ErrorTest.cpp @@ -1,4 +1,4 @@ -//===-- error_test.cpp ----------------------------------------------------===// +//===- ErrorTest.cpp ------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. @@ -14,7 +14,7 @@ // //===----------------------------------------------------------------------===// -#include "orc-rt/error.h" +#include "orc-rt/Error.h" #include "gtest/gtest.h" using namespace orc_rt; diff --git a/orc-rt/unittests/math-test.cpp b/orc-rt/unittests/MathTest.cpp index 491bbd8..c55e4f5 100644 --- a/orc-rt/unittests/math-test.cpp +++ b/orc-rt/unittests/MathTest.cpp @@ -1,4 +1,4 @@ -//===- math-test.cpp ------------------------------------------------------===// +//===- MathTest.cpp -------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. @@ -6,11 +6,11 @@ // //===----------------------------------------------------------------------===// // -// Tests for orc-rt's math.h APIs. +// Tests for orc-rt's Math.h APIs. // //===----------------------------------------------------------------------===// -#include "orc-rt/math.h" +#include "orc-rt/Math.h" #include "gtest/gtest.h" using namespace orc_rt; diff --git a/orc-rt/unittests/rtti-test.cpp b/orc-rt/unittests/RTTITest.cpp index bb9fac6..445efee 100644 --- a/orc-rt/unittests/rtti-test.cpp +++ b/orc-rt/unittests/RTTITest.cpp @@ -12,7 +12,7 @@ // //===----------------------------------------------------------------------===// -#include "orc-rt/rtti.h" +#include "orc-rt/RTTI.h" #include "gtest/gtest.h" using namespace orc_rt; |