diff options
Diffstat (limited to 'ELF/ScriptParser.h')
-rw-r--r-- | ELF/ScriptParser.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/ELF/ScriptParser.h b/ELF/ScriptParser.h index d48d5aa2115e..c953fb302b9a 100644 --- a/ELF/ScriptParser.h +++ b/ELF/ScriptParser.h @@ -1,9 +1,8 @@ //===- ScriptParser.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 // //===----------------------------------------------------------------------===// @@ -17,16 +16,16 @@ namespace lld { namespace elf { // Parses a linker script. Calling this function updates -// Config and ScriptConfig. -void readLinkerScript(MemoryBufferRef MB); +// lld::elf::config and lld::elf::script. +void readLinkerScript(MemoryBufferRef mb); // Parses a version script. -void readVersionScript(MemoryBufferRef MB); +void readVersionScript(MemoryBufferRef mb); -void readDynamicList(MemoryBufferRef MB); +void readDynamicList(MemoryBufferRef mb); // Parses the defsym expression. -void readDefsym(StringRef Name, MemoryBufferRef MB); +void readDefsym(StringRef name, MemoryBufferRef mb); } // namespace elf } // namespace lld |