Fix a use of LLVM_FALLTHROUGH that wasn't even in a switch.

I was over-aggressive in my conversions from comments to the
fallthrough attribute.

llvm-svn: 278903
This commit is contained in:
Justin Bogner 2016-08-17 05:25:38 +00:00
parent b03fd12cef
commit 14f383e9c4
1 changed files with 0 additions and 1 deletions

View File

@ -1286,7 +1286,6 @@ Init *TGParser::ParseSimpleValue(Record *CurRec, RecTy *ItemType,
continue;
}
// Fallthrough to try convert this to a bit.
LLVM_FALLTHROUGH;
}
// All other values must be convertible to just a single bit.
Init *Bit = Vals[i]->convertInitializerTo(BitRecTy::get());