diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2013-08-29 01:56:22 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2013-08-29 01:56:22 +0000 |
commit | 6c77e726598b57a7d59c2461cf408b197c7b34e5 (patch) | |
tree | 6bd150465f017b2afa85d31f458b9c82f334ec17 /clang/lib/Headers | |
parent | 80e45b8cd4cce838cd314cbbe83bea819e6e1d1e (diff) | |
download | bcm5719-llvm-6c77e726598b57a7d59c2461cf408b197c7b34e5.tar.gz bcm5719-llvm-6c77e726598b57a7d59c2461cf408b197c7b34e5.zip |
Two more definitions required by libsupc++ (_sleb128_t and _uleb128_t)
Differential Revision: http://llvm-reviews.chandlerc.com/D1542
llvm-svn: 189558
Diffstat (limited to 'clang/lib/Headers')
-rw-r--r-- | clang/lib/Headers/unwind.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/Headers/unwind.h b/clang/lib/Headers/unwind.h index c2f38f3a8a3..618de04ab1b 100644 --- a/clang/lib/Headers/unwind.h +++ b/clang/lib/Headers/unwind.h @@ -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 { |