1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Simplify code a bit

llvm-svn: 87040
This commit is contained in:
Bill Wendling 2009-11-12 23:13:08 +00:00
parent 507f0b33a6
commit af38b4195e

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;
}
}
}