Silence warning when no assertions.

llvm-svn: 49284
This commit is contained in:
Chris Lattner
2008-04-06 21:46:45 +00:00
parent a39cfc5c5b
commit 4db1f62d84

View File

@@ -317,7 +317,8 @@ MachineFunction::construct(const Function *Fn, const TargetMachine &Tar)
void MachineFunction::destruct(const Function *Fn) {
bool Deleted = Fn->deleteAnnotation(MF_AID);
assert(Deleted && "Machine code did not exist for function!");
assert(Deleted && "Machine code did not exist for function!");
Deleted = Deleted; // silence warning when no assertions.
}
MachineFunction& MachineFunction::get(const Function *F)