Rename isNoReturn to doesNotReturn, and isNoUnwind to

doesNotThrow.

llvm-svn: 45160
This commit is contained in:
Duncan Sands
2007-12-18 09:59:50 +00:00
parent 30291f4a30
commit 3353ed09ac
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.