[llvm-commits] CVS: llvm/runtime/GCCLibraries/libexception/C++-Exception.cpp C++-Exception.h SJLJ-Exception.h

Chris Lattner lattner at cs.uiuc.edu
Sat Aug 30 17:49:07 PDT 2003


Changes in directory llvm/runtime/GCCLibraries/libexception:

C++-Exception.cpp updated: 1.6 -> 1.7
C++-Exception.h updated: 1.7 -> 1.8
SJLJ-Exception.h updated: 1.1 -> 1.2

---
Log message:

Rename files to be capitalized now that they are C++


---
Diffs of the changes:

Index: llvm/runtime/GCCLibraries/libexception/C++-Exception.cpp
diff -u llvm/runtime/GCCLibraries/libexception/C++-Exception.cpp:1.6 llvm/runtime/GCCLibraries/libexception/C++-Exception.cpp:1.7
--- llvm/runtime/GCCLibraries/libexception/C++-Exception.cpp:1.6	Thu Aug 28 14:58:51 2003
+++ llvm/runtime/GCCLibraries/libexception/C++-Exception.cpp	Sat Aug 30 17:47:59 2003
@@ -1,4 +1,4 @@
-//===- c++-exception.cpp - Exception handling support for C++ exceptions --===//
+//===- C++-Exception.cpp - Exception handling support for C++ exceptions --===//
 //
 // This file defines the methods used to implement C++ exception handling in
 // terms of the invoke and %llvm.unwind intrinsic.  These primitives implement
@@ -7,7 +7,7 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "c++-exception.h"
+#include "C++-Exception.h"
 #include <cstdlib>
 #include <cstdarg>
 


Index: llvm/runtime/GCCLibraries/libexception/C++-Exception.h
diff -u llvm/runtime/GCCLibraries/libexception/C++-Exception.h:1.7 llvm/runtime/GCCLibraries/libexception/C++-Exception.h:1.8
--- llvm/runtime/GCCLibraries/libexception/C++-Exception.h:1.7	Thu Aug 28 14:58:51 2003
+++ llvm/runtime/GCCLibraries/libexception/C++-Exception.h	Sat Aug 30 17:47:59 2003
@@ -1,4 +1,4 @@
-//===- c++-exception.h - C++ Specific exception Handling --------*- C++ -*-===//
+//===- C++-Exception.h - C++ Specific Exception Handling --------*- C++ -*-===//
 //
 // This file defines the data structures and API used by the C++ exception
 // handling runtime library.
@@ -8,7 +8,7 @@
 #ifndef CXX_EXCEPTION_H
 #define CXX_EXCEPTION_H
 
-#include "exception.h"
+#include "Exception.h"
 #include <typeinfo>
 #include <cassert>
 


Index: llvm/runtime/GCCLibraries/libexception/SJLJ-Exception.h
diff -u llvm/runtime/GCCLibraries/libexception/SJLJ-Exception.h:1.1 llvm/runtime/GCCLibraries/libexception/SJLJ-Exception.h:1.2
--- llvm/runtime/GCCLibraries/libexception/SJLJ-Exception.h:1.1	Sat Aug 30 17:36:52 2003
+++ llvm/runtime/GCCLibraries/libexception/SJLJ-Exception.h	Sat Aug 30 17:47:59 2003
@@ -1,4 +1,4 @@
-//===- SJLJ-exception.h - SetJmp/LongJmp Exception Handling -----*- C++ -*-===//
+//===- SJLJ-Exception.h - SetJmp/LongJmp Exception Handling -----*- C++ -*-===//
 //
 // This file defines the data structures and API used by the Setjmp/Longjmp
 // exception handling runtime library.
@@ -8,7 +8,7 @@
 #ifndef SJLJ_EXCEPTION_H
 #define SJLJ_EXCEPTION_H
 
-#include "exception.h"
+#include "Exception.h"
 #include <cassert>
 
 struct llvm_sjlj_exception {





More information about the llvm-commits mailing list