[cfe-commits] [libcxxabi] r145949 - in /libcxxabi/trunk: src/abort_message.c src/abort_message.h src/cxa_exception.hpp test/test_exception_storage.cpp test/test_fallback_malloc.cpp test/test_vector3.cpp
Howard Hinnant
hhinnant at apple.com
Tue Dec 6 10:01:47 PST 2011
Author: hhinnant
Date: Tue Dec 6 12:01:47 2011
New Revision: 145949
URL: http://llvm.org/viewvc/llvm-project?rev=145949&view=rev
Log:
Add/update copyright notices
Modified:
libcxxabi/trunk/src/abort_message.c
libcxxabi/trunk/src/abort_message.h
libcxxabi/trunk/src/cxa_exception.hpp
libcxxabi/trunk/test/test_exception_storage.cpp
libcxxabi/trunk/test/test_fallback_malloc.cpp
libcxxabi/trunk/test/test_vector3.cpp
Modified: libcxxabi/trunk/src/abort_message.c
URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/abort_message.c?rev=145949&r1=145948&r2=145949&view=diff
==============================================================================
--- libcxxabi/trunk/src/abort_message.c (original)
+++ libcxxabi/trunk/src/abort_message.c Tue Dec 6 12:01:47 2011
@@ -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.
//
//===----------------------------------------------------------------------===//
Modified: libcxxabi/trunk/src/abort_message.h
URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/abort_message.h?rev=145949&r1=145948&r2=145949&view=diff
==============================================================================
--- libcxxabi/trunk/src/abort_message.h (original)
+++ libcxxabi/trunk/src/abort_message.h Tue Dec 6 12:01:47 2011
@@ -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.
//
//===----------------------------------------------------------------------===//
Modified: libcxxabi/trunk/src/cxa_exception.hpp
URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/cxa_exception.hpp?rev=145949&r1=145948&r2=145949&view=diff
==============================================================================
--- libcxxabi/trunk/src/cxa_exception.hpp (original)
+++ libcxxabi/trunk/src/cxa_exception.hpp Tue Dec 6 12:01:47 2011
@@ -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"
Modified: libcxxabi/trunk/test/test_exception_storage.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/test/test_exception_storage.cpp?rev=145949&r1=145948&r2=145949&view=diff
==============================================================================
--- libcxxabi/trunk/test/test_exception_storage.cpp (original)
+++ libcxxabi/trunk/test/test_exception_storage.cpp Tue Dec 6 12:01:47 2011
@@ -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>
Modified: libcxxabi/trunk/test/test_fallback_malloc.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/test/test_fallback_malloc.cpp?rev=145949&r1=145948&r2=145949&view=diff
==============================================================================
--- libcxxabi/trunk/test/test_fallback_malloc.cpp (original)
+++ libcxxabi/trunk/test/test_fallback_malloc.cpp Tue Dec 6 12:01:47 2011
@@ -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>
Modified: libcxxabi/trunk/test/test_vector3.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/test/test_vector3.cpp?rev=145949&r1=145948&r2=145949&view=diff
==============================================================================
--- libcxxabi/trunk/test/test_vector3.cpp (original)
+++ libcxxabi/trunk/test/test_vector3.cpp Tue Dec 6 12:01:47 2011
@@ -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>
More information about the cfe-commits
mailing list