[NFC][pstl] Do not name each header file in the leading comment
authorLouis Dionne <ldionne@apple.com>
Thu, 4 Jul 2019 19:39:29 +0000 (19:39 +0000)
committerLouis Dionne <ldionne@apple.com>
Thu, 4 Jul 2019 19:39:29 +0000 (19:39 +0000)
With the renaming that will happen, it's just a pain to maintain the
right names.

llvm-svn: 365156

22 files changed:
pstl/include/pstl/internal/algorithm_fwd.h
pstl/include/pstl/internal/algorithm_impl.h
pstl/include/pstl/internal/execution_defs.h
pstl/include/pstl/internal/execution_impl.h
pstl/include/pstl/internal/glue_algorithm_defs.h
pstl/include/pstl/internal/glue_algorithm_impl.h
pstl/include/pstl/internal/glue_execution_defs.h
pstl/include/pstl/internal/glue_memory_defs.h
pstl/include/pstl/internal/glue_memory_impl.h
pstl/include/pstl/internal/glue_numeric_defs.h
pstl/include/pstl/internal/glue_numeric_impl.h
pstl/include/pstl/internal/memory_impl.h
pstl/include/pstl/internal/numeric_fwd.h
pstl/include/pstl/internal/numeric_impl.h
pstl/include/pstl/internal/parallel_backend.h
pstl/include/pstl/internal/parallel_backend_serial.h
pstl/include/pstl/internal/parallel_backend_tbb.h
pstl/include/pstl/internal/parallel_backend_utils.h
pstl/include/pstl/internal/parallel_impl.h
pstl/include/pstl/internal/pstl_config.h
pstl/include/pstl/internal/unseq_backend_simd.h
pstl/include/pstl/internal/utils.h

index 814356b..5165072 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- algorithm_fwd.h --------------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index 7cc9ffe..5956e2e 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- algorithm_impl.h --------------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index e42aff5..6c028c3 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- execution_defs.h --------------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index 90b9f72..2eb5242 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- execution_impl.h --------------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index 4cf51bb..f037d72 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- glue_algorithm_defs.h ---------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index f953b76..2c4f432 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- glue_algorithm_impl.h ---------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index 24ede33..be50c8f 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- glue_execution_defs.h ---------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index 6729319..ba86842 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- glue_memory_defs.h ------------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index 3228696..b4167ce 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- glue_memory_impl.h ------------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index 4f3a095..badc478 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- glue_numeric_defs.h -----------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index 347c109..79a53e9 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- glue_numeric_impl.h -----------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index d96f021..612000b 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- memory_impl.h -----------------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index d92cacb..30d786f 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- numeric_fwd.h --------------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index 8302afd..625bb94 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- numeric_impl.h ----------------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index 85d2d4b..b78e65b 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- parallel_backend.h ------------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index 089f998..bf58abf 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- parallel_backend_serial.h -----------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index 7e2ff99..80d4dcc 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- parallel_backend_tbb.h --------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index d84496d..2b865a4 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- parallel_backend_utils.h ------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index 46560c6..eaa47b8 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- parallel_impl.h ---------------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index 3c2b146..50267cf 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- pstl_config.h -----------------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index a05de39..18634a4 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- unseq_backend_simd.h ----------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
index e35bbd2..16e6f4c 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-//===-- utils.h -----------------------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.