This reverts r251667 since it broke the bots.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251671
91177308-0d34-0410-b5e6-
96231b3b80d8
if (Stream.AtEndOfStream()) return error("Could not find function in stream");
- if (!SeenFirstFunctionBody)
- return error("Trying to materialize functions before seeing function blocks");
-
+ assert(SeenFirstFunctionBody);
// An old bitcode file with the symbol table at the end would have
// finished the parse greedily.
assert(SeenValueSymbolTable);
RUN: FileCheck --check-prefix=ALIAS-TYPE-MISMATCH %s
ALIAS-TYPE-MISMATCH: Alias and aliasee types don't match
-
-RUN: not llvm-dis -disable-output %p/Inputs/invalid-no-function-block.bc 2>&1 | \
-RUN: FileCheck --check-prefix=NO-FUNCTION-BLOCK %s
-
-NO-FUNCTION-BLOCK: Trying to materialize functions before seeing function blocks