summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>