Author: theraven
Date: Tue Apr  5 12:15:18 2011
New Revision: 128890

URL: http://llvm.org/viewvc/llvm-project?rev=128890&view=rev
Log:
Fix copy-and-paste bug that I introduced while tidying up the code.

Does anyone want to buy me a new brain?


Modified:
    cfe/trunk/lib/CodeGen/CGObjCGNU.cpp

Modified: cfe/trunk/lib/CodeGen/CGObjCGNU.cpp
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGObjCGNU.cpp?rev=128890&r1=128889&r2=128890&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGObjCGNU.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGObjCGNU.cpp Tue Apr  5 12:15:18 2011
@@ -614,7 +614,7 @@
         // void __cxa_end_catch(void)
         EnterCatchFn.init(&CGM, "__cxa_end_catch", VoidTy, NULL);
         // void _Unwind_Resume_or_Rethrow(void*)
-        EnterCatchFn.init(&CGM, "_Unwind_Resume_or_Rethrow", VoidTy, PtrTy, 
NULL);
+        ExceptionReThrowFn.init(&CGM, "_Unwind_Resume_or_Rethrow", VoidTy, 
PtrTy, NULL);
       }
     }
 };


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to