[llvm-commits] CVS: llvm/runtime/GCCLibraries/crtend/Exception.h SJLJ-Exception.cpp SJLJ-Exception.h

Misha Brukman brukman at cs.uiuc.edu
Thu Apr 21 16:48:16 PDT 2005



Changes in directory llvm/runtime/GCCLibraries/crtend:

Exception.h updated: 1.8 -> 1.9
SJLJ-Exception.cpp updated: 1.4 -> 1.5
SJLJ-Exception.h updated: 1.4 -> 1.5
---
Log message:

Remove trailing whitespace


---
Diffs of the changes:  (+11 -11)

 Exception.h        |    6 +++---
 SJLJ-Exception.cpp |   10 +++++-----
 SJLJ-Exception.h   |    6 +++---
 3 files changed, 11 insertions(+), 11 deletions(-)


Index: llvm/runtime/GCCLibraries/crtend/Exception.h
diff -u llvm/runtime/GCCLibraries/crtend/Exception.h:1.8 llvm/runtime/GCCLibraries/crtend/Exception.h:1.9
--- llvm/runtime/GCCLibraries/crtend/Exception.h:1.8	Wed Aug  4 21:27:28 2004
+++ llvm/runtime/GCCLibraries/crtend/Exception.h	Thu Apr 21 18:48:05 2005
@@ -1,10 +1,10 @@
 //===- Exception.h - Generic language-independent exceptions ----*- C++ -*-===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
 // This file was developed by the LLVM research group and is distributed under
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This file defines the the shared data structures used by all language
@@ -24,7 +24,7 @@
   // exception type is.
   //
   void (*ExceptionDestructor)(llvm_exception *);
-  
+
   // ExceptionType - This field identifies what runtime library this exception
   // came from.  Currently defined values are:
   //     0 - Error


Index: llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.cpp
diff -u llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.cpp:1.4 llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.cpp:1.5
--- llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.cpp:1.4	Wed Aug  4 19:20:50 2004
+++ llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.cpp	Thu Apr 21 18:48:05 2005
@@ -1,10 +1,10 @@
 //===- SJLJ-Exception.cpp - SetJmp/LongJmp Exception Handling -------------===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
 // This file was developed by the LLVM research group and is distributed under
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This file implements the API used by the Setjmp/Longjmp exception handling
@@ -106,7 +106,7 @@
 bool __llvm_sjljeh_is_longjmp_exception() throw() {
   return __llvm_eh_current_uncaught_exception_type(SJLJException) != 0;
 }
-  
+
 // __llvm_sjljeh_get_longjmp_value - This function returns the value that the
 // setjmp call should "return".  This requires that the current uncaught
 // exception be a sjlj exception, though it does not require the exception to be
@@ -125,7 +125,7 @@
 unsigned __llvm_sjljeh_try_catching_longjmp_exception(void **SetJmpMap) throw(){
   llvm_sjlj_exception *E =
     get_sjlj_exception(__llvm_eh_get_uncaught_exception());
- 
+
   // Scan for a matching entry in the SetJmpMap...
   SetJmpMapEntry *SJE = *(SetJmpMapEntry**)SetJmpMap;
   for (; SJE; SJE = SJE->Next)
@@ -140,7 +140,7 @@
       // Return the setjmp ID which we should branch to...
       return SJE->SetJmpID;
     }
-  
+
   // No setjmp in this function catches the exception!
   return ~0;
 }


Index: llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.h
diff -u llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.h:1.4 llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.h:1.5
--- llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.h:1.4	Wed Aug  4 19:20:50 2004
+++ llvm/runtime/GCCLibraries/crtend/SJLJ-Exception.h	Thu Apr 21 18:48:05 2005
@@ -1,10 +1,10 @@
 //===- SJLJ-Exception.h - SetJmp/LongJmp Exception Handling -----*- C++ -*-===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
 // This file was developed by the LLVM research group and is distributed under
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This file defines the data structures and API used by the Setjmp/Longjmp
@@ -61,7 +61,7 @@
   // current uncaught exception is a longjmp exception.  This is the first step
   // of catching a sjlj exception.
   bool __llvm_sjljeh_is_longjmp_exception() throw();
-  
+
   // __llvm_sjljeh_get_longjmp_value - This function returns the value that the
   // setjmp call should "return".  This requires that the current uncaught
   // exception be a sjlj exception, though it does not require the exception to






More information about the llvm-commits mailing list