diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-12-06 18:01:47 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-12-06 18:01:47 +0000 |
commit | 987afbeede45b29b6b291a93e9b1f62b2177534f (patch) | |
tree | d57818b319f9cd392a8e8219ae532c99a1f69864 /libcxxabi | |
parent | 2642af9e23747782e8fd458640346e080b6609e9 (diff) | |
download | bcm5719-llvm-987afbeede45b29b6b291a93e9b1f62b2177534f.tar.gz bcm5719-llvm-987afbeede45b29b6b291a93e9b1f62b2177534f.zip |
Add/update copyright notices
llvm-svn: 145949
Diffstat (limited to 'libcxxabi')
-rw-r--r-- | libcxxabi/src/abort_message.c | 4 | ||||
-rw-r--r-- | libcxxabi/src/abort_message.h | 4 | ||||
-rw-r--r-- | libcxxabi/src/cxa_exception.hpp | 13 | ||||
-rw-r--r-- | libcxxabi/test/test_exception_storage.cpp | 9 | ||||
-rw-r--r-- | libcxxabi/test/test_fallback_malloc.cpp | 9 | ||||
-rw-r--r-- | libcxxabi/test/test_vector3.cpp | 9 |
6 files changed, 44 insertions, 4 deletions
diff --git a/libcxxabi/src/abort_message.c b/libcxxabi/src/abort_message.c index 717f6a5ed01..95222434483 100644 --- a/libcxxabi/src/abort_message.c +++ b/libcxxabi/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/libcxxabi/src/abort_message.h b/libcxxabi/src/abort_message.h index 5e0e2f434f7..f2a91a24833 100644 --- a/libcxxabi/src/abort_message.h +++ b/libcxxabi/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/libcxxabi/src/cxa_exception.hpp b/libcxxabi/src/cxa_exception.hpp index eda9951174b..9681298a606 100644 --- a/libcxxabi/src/cxa_exception.hpp +++ b/libcxxabi/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/libcxxabi/test/test_exception_storage.cpp b/libcxxabi/test/test_exception_storage.cpp index e863b1b7d7c..0ce4431c6f2 100644 --- a/libcxxabi/test/test_exception_storage.cpp +++ b/libcxxabi/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/libcxxabi/test/test_fallback_malloc.cpp b/libcxxabi/test/test_fallback_malloc.cpp index aaddc6af670..474e0b3b336 100644 --- a/libcxxabi/test/test_fallback_malloc.cpp +++ b/libcxxabi/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/libcxxabi/test/test_vector3.cpp b/libcxxabi/test/test_vector3.cpp index 8143b95c192..39368376671 100644 --- a/libcxxabi/test/test_vector3.cpp +++ b/libcxxabi/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> |