Rename isNoReturn to doesNotReturn, and isNoUnwind to

doesNotThrow.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45160 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan Sands
2007-12-18 09:59:50 +00:00
parent f311f53a0f
commit 2b0e8990ab
8 changed files with 21 additions and 21 deletions

View File

@ -70,7 +70,7 @@ static void HandleInlinedInvoke(InvokeInst *II, BasicBlock *FirstNewBlock,
CallInst *CI = cast<CallInst>(I);
// If this call cannot unwind, don't convert it to an invoke.
if (CI->isNoUnwind())
if (CI->doesNotThrow())
continue;
// Convert this function call into an invoke instruction.