summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/CellSPU
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/Target/CellSPU')
-rw-r--r--llvm/lib/Target/CellSPU/CellSDKIntrinsics.td5
-rw-r--r--llvm/lib/Target/CellSPU/Makefile5
-rw-r--r--llvm/lib/Target/CellSPU/SPU.h5
-rw-r--r--llvm/lib/Target/CellSPU/SPU.td5
-rw-r--r--llvm/lib/Target/CellSPU/SPUAsmPrinter.cpp5
-rw-r--r--llvm/lib/Target/CellSPU/SPUCallingConv.td5
-rw-r--r--llvm/lib/Target/CellSPU/SPUFrameInfo.cpp5
-rw-r--r--llvm/lib/Target/CellSPU/SPUFrameInfo.h5
-rw-r--r--llvm/lib/Target/CellSPU/SPUHazardRecognizers.cpp5
-rw-r--r--llvm/lib/Target/CellSPU/SPUHazardRecognizers.h5
-rw-r--r--llvm/lib/Target/CellSPU/SPUISelDAGToDAG.cpp5
-rw-r--r--llvm/lib/Target/CellSPU/SPUISelLowering.cpp5
-rw-r--r--llvm/lib/Target/CellSPU/SPUISelLowering.h5
-rw-r--r--llvm/lib/Target/CellSPU/SPUInstrBuilder.h4
-rw-r--r--llvm/lib/Target/CellSPU/SPUInstrFormats.td4
-rw-r--r--llvm/lib/Target/CellSPU/SPUInstrInfo.cpp5
-rw-r--r--llvm/lib/Target/CellSPU/SPUInstrInfo.h7
-rw-r--r--llvm/lib/Target/CellSPU/SPUInstrInfo.td4
-rw-r--r--llvm/lib/Target/CellSPU/SPUMachineFunction.h5
-rw-r--r--llvm/lib/Target/CellSPU/SPUNodes.td7
-rw-r--r--llvm/lib/Target/CellSPU/SPUOperands.td4
-rw-r--r--llvm/lib/Target/CellSPU/SPURegisterInfo.cpp5
-rw-r--r--llvm/lib/Target/CellSPU/SPURegisterInfo.h4
-rw-r--r--llvm/lib/Target/CellSPU/SPURegisterInfo.td5
-rw-r--r--llvm/lib/Target/CellSPU/SPURegisterNames.h5
-rw-r--r--llvm/lib/Target/CellSPU/SPUSchedule.td5
-rw-r--r--llvm/lib/Target/CellSPU/SPUSubtarget.cpp5
-rw-r--r--llvm/lib/Target/CellSPU/SPUSubtarget.h5
-rw-r--r--llvm/lib/Target/CellSPU/SPUTargetAsmInfo.cpp5
-rw-r--r--llvm/lib/Target/CellSPU/SPUTargetAsmInfo.h5
-rw-r--r--llvm/lib/Target/CellSPU/SPUTargetMachine.cpp5
-rw-r--r--llvm/lib/Target/CellSPU/SPUTargetMachine.h5
32 files changed, 74 insertions, 85 deletions
diff --git a/llvm/lib/Target/CellSPU/CellSDKIntrinsics.td b/llvm/lib/Target/CellSPU/CellSDKIntrinsics.td
index bd1794c11ea..5bd6b9b5563 100644
--- a/llvm/lib/Target/CellSPU/CellSDKIntrinsics.td
+++ b/llvm/lib/Target/CellSPU/CellSDKIntrinsics.td
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//===----------------------------------------------------------------------===//
///--==-- Arithmetic ops intrinsics --==--
diff --git a/llvm/lib/Target/CellSPU/Makefile b/llvm/lib/Target/CellSPU/Makefile
index 282d07f8aa2..7abb40c54af 100644
--- a/llvm/lib/Target/CellSPU/Makefile
+++ b/llvm/lib/Target/CellSPU/Makefile
@@ -3,9 +3,8 @@
# The LLVM Compiler Infrastructure
#
# This file was developed by a team from the Computer Systems Research
-# Department at The Aerospace Corporation.
-#
-# See README.txt for details.
+# Department at The Aerospace Corporation and is distributed under the
+# University of Illinois Open Source License. See LICENSE.TXT for details.
##===----------------------------------------------------------------------===##
LEVEL = ../../..
LIBRARYNAME = LLVMCellSPU
diff --git a/llvm/lib/Target/CellSPU/SPU.h b/llvm/lib/Target/CellSPU/SPU.h
index d66fce2bc0c..aee87fb3491 100644
--- a/llvm/lib/Target/CellSPU/SPU.h
+++ b/llvm/lib/Target/CellSPU/SPU.h
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPU.td b/llvm/lib/Target/CellSPU/SPU.td
index ec41e540b55..14e7ccf2aa9 100644
--- a/llvm/lib/Target/CellSPU/SPU.td
+++ b/llvm/lib/Target/CellSPU/SPU.td
@@ -2,11 +2,10 @@
//
// The LLVM Compiler Infrastructure
//
-//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
-// See README.txt for details.
//===----------------------------------------------------------------------===//
//
// This is the top level entry point for the STI Cell SPU target machine.
diff --git a/llvm/lib/Target/CellSPU/SPUAsmPrinter.cpp b/llvm/lib/Target/CellSPU/SPUAsmPrinter.cpp
index 6fdb14cf3b8..14f99098d42 100644
--- a/llvm/lib/Target/CellSPU/SPUAsmPrinter.cpp
+++ b/llvm/lib/Target/CellSPU/SPUAsmPrinter.cpp
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPUCallingConv.td b/llvm/lib/Target/CellSPU/SPUCallingConv.td
index cc1a9d6fd90..f7e5c01688f 100644
--- a/llvm/lib/Target/CellSPU/SPUCallingConv.td
+++ b/llvm/lib/Target/CellSPU/SPUCallingConv.td
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPUFrameInfo.cpp b/llvm/lib/Target/CellSPU/SPUFrameInfo.cpp
index c110db9abc9..a37dd5d2611 100644
--- a/llvm/lib/Target/CellSPU/SPUFrameInfo.cpp
+++ b/llvm/lib/Target/CellSPU/SPUFrameInfo.cpp
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPUFrameInfo.h b/llvm/lib/Target/CellSPU/SPUFrameInfo.h
index 2fe7b3542b8..8ce8450a65b 100644
--- a/llvm/lib/Target/CellSPU/SPUFrameInfo.h
+++ b/llvm/lib/Target/CellSPU/SPUFrameInfo.h
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPUHazardRecognizers.cpp b/llvm/lib/Target/CellSPU/SPUHazardRecognizers.cpp
index e4787ebfc31..bb9a4dc13e5 100644
--- a/llvm/lib/Target/CellSPU/SPUHazardRecognizers.cpp
+++ b/llvm/lib/Target/CellSPU/SPUHazardRecognizers.cpp
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPUHazardRecognizers.h b/llvm/lib/Target/CellSPU/SPUHazardRecognizers.h
index ce602fd72f5..f6f618dd9be 100644
--- a/llvm/lib/Target/CellSPU/SPUHazardRecognizers.h
+++ b/llvm/lib/Target/CellSPU/SPUHazardRecognizers.h
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPUISelDAGToDAG.cpp b/llvm/lib/Target/CellSPU/SPUISelDAGToDAG.cpp
index 7d5c8ca8614..935064d0258 100644
--- a/llvm/lib/Target/CellSPU/SPUISelDAGToDAG.cpp
+++ b/llvm/lib/Target/CellSPU/SPUISelDAGToDAG.cpp
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPUISelLowering.cpp b/llvm/lib/Target/CellSPU/SPUISelLowering.cpp
index 91c0024d744..41c6f50b8ca 100644
--- a/llvm/lib/Target/CellSPU/SPUISelLowering.cpp
+++ b/llvm/lib/Target/CellSPU/SPUISelLowering.cpp
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPUISelLowering.h b/llvm/lib/Target/CellSPU/SPUISelLowering.h
index 4e3ec3a2457..2275b7a538c 100644
--- a/llvm/lib/Target/CellSPU/SPUISelLowering.h
+++ b/llvm/lib/Target/CellSPU/SPUISelLowering.h
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPUInstrBuilder.h b/llvm/lib/Target/CellSPU/SPUInstrBuilder.h
index 58e455f9f19..074e1739c7a 100644
--- a/llvm/lib/Target/CellSPU/SPUInstrBuilder.h
+++ b/llvm/lib/Target/CellSPU/SPUInstrBuilder.h
@@ -2,6 +2,10 @@
//
// The LLVM Compiler Infrastructure
//
+// This file was developed by a team from the Computer Systems Research
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
+//
//===----------------------------------------------------------------------===//
//
// This file exposes functions that may be used with BuildMI from the
diff --git a/llvm/lib/Target/CellSPU/SPUInstrFormats.td b/llvm/lib/Target/CellSPU/SPUInstrFormats.td
index 8d3a500a513..81977b63c25 100644
--- a/llvm/lib/Target/CellSPU/SPUInstrFormats.td
+++ b/llvm/lib/Target/CellSPU/SPUInstrFormats.td
@@ -2,7 +2,9 @@
//
// The LLVM Compiler Infrastructure
//
-// This file was developed by The Aerospace Corporation....
+// This file was developed by a team from the Computer Systems Research
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
diff --git a/llvm/lib/Target/CellSPU/SPUInstrInfo.cpp b/llvm/lib/Target/CellSPU/SPUInstrInfo.cpp
index d65a5289438..ea7e107c490 100644
--- a/llvm/lib/Target/CellSPU/SPUInstrInfo.cpp
+++ b/llvm/lib/Target/CellSPU/SPUInstrInfo.cpp
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPUInstrInfo.h b/llvm/lib/Target/CellSPU/SPUInstrInfo.h
index 0728c41ade8..6b69b75b0bb 100644
--- a/llvm/lib/Target/CellSPU/SPUInstrInfo.h
+++ b/llvm/lib/Target/CellSPU/SPUInstrInfo.h
@@ -3,13 +3,12 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
-// This file contains the PowerPC implementation of the TargetInstrInfo class.
+// This file contains the CellSPU implementation of the TargetInstrInfo class.
//
//===----------------------------------------------------------------------===//
diff --git a/llvm/lib/Target/CellSPU/SPUInstrInfo.td b/llvm/lib/Target/CellSPU/SPUInstrInfo.td
index 71ff34b02b1..faa6a7cca2e 100644
--- a/llvm/lib/Target/CellSPU/SPUInstrInfo.td
+++ b/llvm/lib/Target/CellSPU/SPUInstrInfo.td
@@ -2,7 +2,9 @@
//
// The LLVM Compiler Infrastructure
//
-// This file was developed by The Aerospace Corporation.
+// This file was developed by a team from the Computer Systems Research
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// Cell SPU Instructions:
diff --git a/llvm/lib/Target/CellSPU/SPUMachineFunction.h b/llvm/lib/Target/CellSPU/SPUMachineFunction.h
index 8c98d5a3508..1f28badd7e5 100644
--- a/llvm/lib/Target/CellSPU/SPUMachineFunction.h
+++ b/llvm/lib/Target/CellSPU/SPUMachineFunction.h
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPUNodes.td b/llvm/lib/Target/CellSPU/SPUNodes.td
index eaf2f49b23e..11a1e2965b8 100644
--- a/llvm/lib/Target/CellSPU/SPUNodes.td
+++ b/llvm/lib/Target/CellSPU/SPUNodes.td
@@ -1,9 +1,10 @@
//=- SPUNodes.h - Specialized SelectionDAG nodes used for CellSPU -*- C++ -*-=//
//
-// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
+// The LLVM Compiler Infrastructure
//
-// See README.txt for details.
+// This file was developed by a team from the Computer Systems Research
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//===----------------------------------------------------------------------===//
//
// Type profiles and SelectionDAG nodes used by CellSPU
diff --git a/llvm/lib/Target/CellSPU/SPUOperands.td b/llvm/lib/Target/CellSPU/SPUOperands.td
index af445666ac1..05270dd8dcd 100644
--- a/llvm/lib/Target/CellSPU/SPUOperands.td
+++ b/llvm/lib/Target/CellSPU/SPUOperands.td
@@ -2,7 +2,9 @@
//
// The LLVM Compiler Infrastructure
//
-// This file was developed by The Aerospace Corporation.
+// This file was developed by a team from the Computer Systems Research
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// Cell SPU Instruction Operands:
diff --git a/llvm/lib/Target/CellSPU/SPURegisterInfo.cpp b/llvm/lib/Target/CellSPU/SPURegisterInfo.cpp
index 546b91cab7e..a9c7333dc75 100644
--- a/llvm/lib/Target/CellSPU/SPURegisterInfo.cpp
+++ b/llvm/lib/Target/CellSPU/SPURegisterInfo.cpp
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPURegisterInfo.h b/llvm/lib/Target/CellSPU/SPURegisterInfo.h
index a3006a933fe..07e16d809a0 100644
--- a/llvm/lib/Target/CellSPU/SPURegisterInfo.h
+++ b/llvm/lib/Target/CellSPU/SPURegisterInfo.h
@@ -2,7 +2,9 @@
//
// The LLVM Compiler Infrastructure
//
-// This file was developed by The Aerospace Corporation.
+// This file was developed by a team from the Computer Systems Research
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPURegisterInfo.td b/llvm/lib/Target/CellSPU/SPURegisterInfo.td
index f7156a5d534..537922524c2 100644
--- a/llvm/lib/Target/CellSPU/SPURegisterInfo.td
+++ b/llvm/lib/Target/CellSPU/SPURegisterInfo.td
@@ -2,8 +2,9 @@
//
// The LLVM Compiler Infrastructure
//
-// This file was developed by The Aerospace Corporation. No distribution rights
-// yet determined...
+// This file was developed by a team from the Computer Systems Research
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPURegisterNames.h b/llvm/lib/Target/CellSPU/SPURegisterNames.h
index a475353d8d6..287a82b056e 100644
--- a/llvm/lib/Target/CellSPU/SPURegisterNames.h
+++ b/llvm/lib/Target/CellSPU/SPURegisterNames.h
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
diff --git a/llvm/lib/Target/CellSPU/SPUSchedule.td b/llvm/lib/Target/CellSPU/SPUSchedule.td
index 06e3d20e37f..e8a8a7a5952 100644
--- a/llvm/lib/Target/CellSPU/SPUSchedule.td
+++ b/llvm/lib/Target/CellSPU/SPUSchedule.td
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
diff --git a/llvm/lib/Target/CellSPU/SPUSubtarget.cpp b/llvm/lib/Target/CellSPU/SPUSubtarget.cpp
index 6786f7f8646..90c5a0511d1 100644
--- a/llvm/lib/Target/CellSPU/SPUSubtarget.cpp
+++ b/llvm/lib/Target/CellSPU/SPUSubtarget.cpp
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPUSubtarget.h b/llvm/lib/Target/CellSPU/SPUSubtarget.h
index d0172b1770e..a64a37f7374 100644
--- a/llvm/lib/Target/CellSPU/SPUSubtarget.h
+++ b/llvm/lib/Target/CellSPU/SPUSubtarget.h
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPUTargetAsmInfo.cpp b/llvm/lib/Target/CellSPU/SPUTargetAsmInfo.cpp
index 027d73e27be..f90c7d8a4d0 100644
--- a/llvm/lib/Target/CellSPU/SPUTargetAsmInfo.cpp
+++ b/llvm/lib/Target/CellSPU/SPUTargetAsmInfo.cpp
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPUTargetAsmInfo.h b/llvm/lib/Target/CellSPU/SPUTargetAsmInfo.h
index 868abfbbdb3..101190482f8 100644
--- a/llvm/lib/Target/CellSPU/SPUTargetAsmInfo.h
+++ b/llvm/lib/Target/CellSPU/SPUTargetAsmInfo.h
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPUTargetMachine.cpp b/llvm/lib/Target/CellSPU/SPUTargetMachine.cpp
index 068fd00348c..ed5eace8abc 100644
--- a/llvm/lib/Target/CellSPU/SPUTargetMachine.cpp
+++ b/llvm/lib/Target/CellSPU/SPUTargetMachine.cpp
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
diff --git a/llvm/lib/Target/CellSPU/SPUTargetMachine.h b/llvm/lib/Target/CellSPU/SPUTargetMachine.h
index 53a00eaf149..8f9677d214e 100644
--- a/llvm/lib/Target/CellSPU/SPUTargetMachine.h
+++ b/llvm/lib/Target/CellSPU/SPUTargetMachine.h
@@ -3,9 +3,8 @@
// The LLVM Compiler Infrastructure
//
// This file was developed by a team from the Computer Systems Research
-// Department at The Aerospace Corporation.
-//
-// See README.txt for details.
+// Department at The Aerospace Corporation and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
OpenPOWER on IntegriCloud