]> granicus.if.org Git - llvm/commitdiff
Update new files added to llvm-objcopy to use the new file header.
authorChandler Carruth <chandlerc@gmail.com>
Mon, 11 Feb 2019 08:25:19 +0000 (08:25 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Mon, 11 Feb 2019 08:25:19 +0000 (08:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@353666 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-objcopy/MachO/MachOObjcopy.cpp
tools/llvm-objcopy/MachO/MachOObjcopy.h
tools/llvm-objcopy/MachO/MachOReader.cpp
tools/llvm-objcopy/MachO/MachOReader.h
tools/llvm-objcopy/MachO/MachOWriter.cpp
tools/llvm-objcopy/MachO/MachOWriter.h
tools/llvm-objcopy/MachO/Object.h

index 1f2d1180e46953d324469e46938ec07aad288e6c..8cf1d10943a6c2c32f6e362a6209bdf214faaf71 100644 (file)
@@ -1,9 +1,8 @@
 //===- MachOObjcopy.cpp -----------------------------------------*- C++ -*-===//
 //
-//                      The LLVM Compiler Infrastructure
-//
-// 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
 //
 //===----------------------------------------------------------------------===//
 
index 9e7a664a33ad34b7153773d58dc0edf19da6e174..f34e361db7ea94195a8dd1ad2b1555b90e1c086d 100644 (file)
@@ -1,9 +1,8 @@
 //===- MachOObjcopy.h -------------------------------------------*- C++ -*-===//
 //
-//                      The LLVM Compiler Infrastructure
-//
-// 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
 //
 //===----------------------------------------------------------------------===//
 
index fff09f99e94378c587ed2eae24502a8e325cc2c3..39702cda4ebc8cdabffd40c4a81ddb91819521a9 100644 (file)
@@ -1,9 +1,8 @@
 //===- MachOReader.cpp ------------------------------------------*- C++ -*-===//
 //
-//                      The LLVM Compiler Infrastructure
-//
-// 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
 //
 //===----------------------------------------------------------------------===//
 
index e38afbd6b71d8e69271988816370529d981d4c0c..cad3cdf8e6220889d647eeb17b65cafa852c32f0 100644 (file)
@@ -1,9 +1,8 @@
 //===- MachOReader.h --------------------------------------------*- C++ -*-===//
 //
-//                      The LLVM Compiler Infrastructure
-//
-// 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
 //
 //===----------------------------------------------------------------------===//
 
index 09e8530e8452822e69b4df94434c1b8f35ef35b7..a72a9609454e6aadb2dd8d215ddfa071cf3f02d8 100644 (file)
@@ -1,9 +1,8 @@
 //===- MachOWriter.cpp ------------------------------------------*- C++ -*-===//
 //
-//                      The LLVM Compiler Infrastructure
-//
-// 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
 //
 //===----------------------------------------------------------------------===//
 
index dedff11425653fc813d1a70994cad9e94d0def8c..9c91452a2add29d2b448e6ec23c0291574207c3a 100644 (file)
@@ -1,9 +1,8 @@
 //===- MachOWriter.h --------------------------------------------*- C++ -*-===//
 //
-//                      The LLVM Compiler Infrastructure
-//
-// 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
 //
 //===----------------------------------------------------------------------===//
 
index d24306497b7b29bcbe0397ec96be41a046c423d0..61cfbf18bdd9b5311216e0227d5de9c5d289657a 100644 (file)
@@ -1,9 +1,8 @@
 //===- Object.h - Mach-O object file model ----------------------*- C++ -*-===//
 //
-//                     The LLVM Compiler Infrastructure
-//
-// 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
 //
 //===----------------------------------------------------------------------===//