summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-08-05 00:20:51 +0000
committerChris Lattner <sabre@nondot.org>2004-08-05 00:20:51 +0000
commit0f2aeea79cc8384bdddad054d5657cc6cbc75202 (patch)
tree7a7f5a164722539238840f982288ac47ceea1adc
parent24fa5fd29bfad8d6ee8568310c2928c04b06bb48 (diff)
downloadllvm-0f2aeea79cc8384bdddad054d5657cc6cbc75202.tar.gz
Add missing copyrights
llvm-svn: 15513
-rw-r--r--llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.cpp7
-rw-r--r--llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.h7
-rw-r--r--llvm/runtime/GCCLibraries/crtend/crtend.c7
3 files changed, 21 insertions, 0 deletions
diff --git a/llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.cpp b/llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.cpp
index 0221df1e4375..86e0e3a28dff 100644
--- a/llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.cpp
+++ b/llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.cpp
@@ -1,4 +1,11 @@
//===- SJLJ-Exception.cpp - SetJmp/LongJmp Exception Handling -------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
//
// This file implements the API used by the Setjmp/Longjmp exception handling
// runtime library.
diff --git a/llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.h b/llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.h
index 05960025fa08..eaf927a5f007 100644
--- a/llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.h
+++ b/llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.h
@@ -1,4 +1,11 @@
//===- SJLJ-Exception.h - SetJmp/LongJmp Exception Handling -----*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
//
// This file defines the data structures and API used by the Setjmp/Longjmp
// exception handling runtime library.
diff --git a/llvm/runtime/GCCLibraries/crtend/crtend.c b/llvm/runtime/GCCLibraries/crtend/crtend.c
index baac8a1b95af..74e7831deeb7 100644
--- a/llvm/runtime/GCCLibraries/crtend/crtend.c
+++ b/llvm/runtime/GCCLibraries/crtend/crtend.c
@@ -1,4 +1,11 @@
/*===- crtend.c - Initialization code for programs ------------------------===*\
+ *
+ * The LLVM Compiler Infrastructure
+ *
+ * This file was developed by the LLVM research group and is distributed under
+ * the University of Illinois Open Source License. See LICENSE.TXT for details.
+ *
+ *===----------------------------------------------------------------------===*
*
* This file defines the __main function, which is used to run static
* constructors and destructors in C++ programs, or with C programs that use GCC