Add a missing closing parenthesis, and tweak to fit in 80

columns.

llvm-svn: 85732
This commit is contained in:
Duncan Sands 2009-11-01 19:12:43 +00:00
parent 649f4e9e8f
commit f25d301311
1 changed files with 2 additions and 2 deletions

View File

@ -160,8 +160,8 @@ void CodeMetrics::analyzeBasicBlock(const BasicBlock *BB) {
++NumRets;
// We never want to inline functions that contain an indirectbr. This is
// incorrect because all the blockaddress's (e.g. in static global
// initializers would be referring to the original function, and this indirect
// incorrect because all the blockaddress's (in static global initializers
// for example) would be referring to the original function, and this indirect
// jump would jump from the inlined copy of the function into the original
// function which is extremely undefined behavior.
if (isa<IndirectBrInst>(BB->getTerminator()))