summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2011-12-06 18:01:47 +0000
committerHoward Hinnant <hhinnant@apple.com>2011-12-06 18:01:47 +0000
commitb9f2cc816dc3e5369507db9509bea6d10b524a94 (patch)
tree7add4269f7eab2d0a70733e02f7d19ed353246a9
parentd2af0fd62fc0a75baebd3ba16f9caf35d6e8a0c5 (diff)
Add/update copyright notices
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@145949 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--src/abort_message.c4
-rw-r--r--src/abort_message.h4
-rw-r--r--src/cxa_exception.hpp13
-rw-r--r--test/test_exception_storage.cpp9
-rw-r--r--test/test_fallback_malloc.cpp9
-rw-r--r--test/test_vector3.cpp9
6 files changed, 44 insertions, 4 deletions
diff --git a/src/abort_message.c b/src/abort_message.c
index 717f6a5..9522243 100644
--- a/src/abort_message.c
+++ b/src/abort_message.c
@@ -2,8 +2,8 @@
//
// The LLVM Compiler Infrastructure
//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
+// This file is dual licensed under the MIT and the University of Illinois Open
+// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
diff --git a/src/abort_message.h b/src/abort_message.h
index 5e0e2f4..f2a91a2 100644
--- a/src/abort_message.h
+++ b/src/abort_message.h
@@ -2,8 +2,8 @@
//
// The LLVM Compiler Infrastructure
//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
+// This file is dual licensed under the MIT and the University of Illinois Open
+// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
diff --git a/src/cxa_exception.hpp b/src/cxa_exception.hpp
index eda9951..9681298 100644
--- a/src/cxa_exception.hpp
+++ b/src/cxa_exception.hpp
@@ -1,3 +1,16 @@
+//===------------------------- cxa_exception.hpp --------------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is dual licensed under the MIT and the University of Illinois Open
+// Source Licenses. See LICENSE.TXT for details.
+//
+//
+// This file implements the "Exception Handling APIs"
+// http://www.codesourcery.com/public/cxx-abi/abi-eh.html
+//
+//===----------------------------------------------------------------------===//
+
#include <exception> // for std::unexpected_handler and std::terminate_handler
#include <cxxabi.h>
#include "unwind.h"
diff --git a/test/test_exception_storage.cpp b/test/test_exception_storage.cpp
index e863b1b..0ce4431 100644
--- a/test/test_exception_storage.cpp
+++ b/test/test_exception_storage.cpp
@@ -1,3 +1,12 @@
+//===-------------------- test_exception_storage.cpp ----------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is dual licensed under the MIT and the University of Illinois Open
+// Source Licenses. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
#include <cstdlib>
#include <algorithm>
#include <iostream>
diff --git a/test/test_fallback_malloc.cpp b/test/test_fallback_malloc.cpp
index aaddc6a..474e0b3 100644
--- a/test/test_fallback_malloc.cpp
+++ b/test/test_fallback_malloc.cpp
@@ -1,3 +1,12 @@
+//===--------------------- test_fallback_malloc.cpp -----------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is dual licensed under the MIT and the University of Illinois Open
+// Source Licenses. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
#include <iostream>
#include <deque>
diff --git a/test/test_vector3.cpp b/test/test_vector3.cpp
index 8143b95..3936837 100644
--- a/test/test_vector3.cpp
+++ b/test/test_vector3.cpp
@@ -1,3 +1,12 @@
+//===------------------------- test_vector3.cpp ---------------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is dual licensed under the MIT and the University of Illinois Open
+// Source Licenses. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
#include "cxxabi.h"
#include <stdio.h>