Bugzilla – Bug 236
[inliner] Error inlining intrinsic calls into invoke instructions
Last modified: 2004-02-13 11:01:15
You need to log in before you can comment on or make changes to this bug.
When inlining calls into invoke instructions, the inliner must make the cloned calls sites invokes to vector stack unwinding appropriately. However, intrinsic functions cannot be 'invoked' and never throw exceptions, so the inliner needs to leave them as call instructions. -Chris
Here's the fix: http://mail.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20040209/011586.html This is tested by 126.gcc. -Chris