From 8806c7b1f5317a9679a5779ffc08c552f2091bce Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Fri, 7 Sep 2007 11:39:35 +0000 Subject: 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 --- docs/ExceptionHandling.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'docs/ExceptionHandling.html') diff --git a/docs/ExceptionHandling.html b/docs/ExceptionHandling.html index eb3c5a2..d3b157d 100644 --- a/docs/ExceptionHandling.html +++ b/docs/ExceptionHandling.html @@ -355,7 +355,8 @@ exception structure reference.

-  i32 %llvm.eh.selector(i8*, i8*, i8*, ...)
+  i32 %llvm.eh.selector.i32(i8*, i8*, i8*, ...)
+  i64 %llvm.eh.selector.i64(i8*, i8*, i8*, ...)
 

This intrinsic indicates that the exception selector is available at this @@ -388,7 +389,8 @@ the exception table, which can be obtained using the

-  i32 %llvm.eh.typeid.for(i8*)
+  i32 %llvm.eh.typeid.for.i32(i8*)
+  i64 %llvm.eh.typeid.for.i64(i8*)
 

This intrinsic returns the type info index in the exception table of the -- cgit v1.1