[llvm-commits] [llvm] r48084 - in /llvm/trunk: lib/Transforms/IPO/PruneEH.cpp test/Transforms/PruneEH/unwindto.ll
Duncan Sands
baldrick at free.fr
Sun Mar 9 03:02:49 PDT 2008
Hi Nick,
> + } else
> + couldUnwind = true;
a stylistic point: please use
} else {
couldUnwind = true;
}
when the previous if block is in {}.
> + } else if (!CI->doesNotThrow())
> + couldUnwind = true;
Likewise.
Thanks,
D.
More information about the llvm-commits
mailing list