r189558 - Two more definitions required by libsupc++ (_sleb128_t and _uleb128_t)

Peter Collingbourne peter at pcc.me.uk
Wed Aug 28 18:56:22 PDT 2013


Author: pcc
Date: Wed Aug 28 20:56:22 2013
New Revision: 189558

URL: http://llvm.org/viewvc/llvm-project?rev=189558&view=rev
Log:
Two more definitions required by libsupc++ (_sleb128_t and _uleb128_t)

Differential Revision: http://llvm-reviews.chandlerc.com/D1542

Modified:
    cfe/trunk/lib/Headers/unwind.h

Modified: cfe/trunk/lib/Headers/unwind.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Headers/unwind.h?rev=189558&r1=189557&r2=189558&view=diff
==============================================================================
--- cfe/trunk/lib/Headers/unwind.h (original)
+++ cfe/trunk/lib/Headers/unwind.h Wed Aug 28 20:56:22 2013
@@ -72,6 +72,9 @@ typedef uintptr_t _Unwind_Ptr;
 typedef uintptr_t _Unwind_Internal_Ptr;
 typedef uint64_t _Unwind_Exception_Class;
 
+typedef intptr_t _sleb128_t;
+typedef uintptr_t _uleb128_t;
+
 struct _Unwind_Context;
 struct _Unwind_Exception;
 typedef enum {





More information about the cfe-commits mailing list