aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm/tools/lld/COFF/MarkLive.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm/tools/lld/COFF/MarkLive.h')
-rw-r--r--contrib/llvm/tools/lld/COFF/MarkLive.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/contrib/llvm/tools/lld/COFF/MarkLive.h b/contrib/llvm/tools/lld/COFF/MarkLive.h
index 5b652dd48196..e4e4c31c7c79 100644
--- a/contrib/llvm/tools/lld/COFF/MarkLive.h
+++ b/contrib/llvm/tools/lld/COFF/MarkLive.h
@@ -1,9 +1,8 @@
//===- MarkLive.h -----------------------------------------------*- C++ -*-===//
//
-// The LLVM Linker
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
+// 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
//
//===----------------------------------------------------------------------===//
@@ -16,7 +15,9 @@
namespace lld {
namespace coff {
-void markLive(ArrayRef<Chunk *> Chunks);
+class Chunk;
+
+void markLive(ArrayRef<Chunk *> chunks);
} // namespace coff
} // namespace lld