Simplify code a bit

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@87040 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2009-11-12 23:13:08 +00:00
parent ed060dcb5c
commit ecc260e403

View File

@ -485,10 +485,9 @@ bool DwarfException::CallToNoUnwindFunction(const MachineInstr *MI) {
MarkedNoUnwind = false;
break;
}
if (F->doesNotThrow()) {
SawFunc = true;
MarkedNoUnwind = true;
}
MarkedNoUnwind = F->doesNotThrow();
SawFunc = true;
}
}
}