diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2007-09-07 11:39:35 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2007-09-07 11:39:35 +0000 |
commit | 8806c7b1f5317a9679a5779ffc08c552f2091bce (patch) | |
tree | 71d3b284ef1e1fdc5c2bcdbe95ae203ab83072d1 /docs/ExceptionHandling.html | |
parent | 0fe4b5a113625f0b3f88a92ec8c482527b72af02 (diff) |
Split eh.select / eh.typeid.for intrinsics into i32/i64 versions. This is needed, because they just "mark" register
liveins and we let frontend solve type issue, not lowering code :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41763 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ExceptionHandling.html')
-rw-r--r-- | docs/ExceptionHandling.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/ExceptionHandling.html b/docs/ExceptionHandling.html index eb3c5a223b..d3b157d155 100644 --- a/docs/ExceptionHandling.html +++ b/docs/ExceptionHandling.html @@ -355,7 +355,8 @@ exception structure reference.</p> <div class="doc_text"> <pre> - i32 %<a href="#llvm_eh_selector">llvm.eh.selector</a>(i8*, i8*, i8*, ...) + i32 %<a href="#llvm_eh_selector">llvm.eh.selector.i32</a>(i8*, i8*, i8*, ...) + i64 %<a href="#llvm_eh_selector">llvm.eh.selector.i64</a>(i8*, i8*, i8*, ...) </pre> <p>This intrinsic indicates that the exception selector is available at this @@ -388,7 +389,8 @@ the exception table, which can be obtained using the <div class="doc_text"> <pre> - i32 %<a href="#llvm_eh_typeid_for">llvm.eh.typeid.for</a>(i8*) + i32 %<a href="#llvm_eh_typeid_for">llvm.eh.typeid.for.i32</a>(i8*) + i64 %<a href="#llvm_eh_typeid_for">llvm.eh.typeid.for.i64</a>(i8*) </pre> <p>This intrinsic returns the type info index in the exception table of the |