commit | c8a79af27df2a24b2bb496997194aa35bba70432 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Mon Apr 08 21:59:08 2002 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Mon Apr 08 21:59:08 2002 +0000 |
tree | 0e0f0595355a7de89e3c5f4ac241178b7730890b | |
parent | e6d4ec3d5a423028f466eb05bbcdb8d17280b84a [diff] [blame] |
isLabelType is obsolete git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2175 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/AsmParser/ParserInternals.h b/lib/AsmParser/ParserInternals.h index 2291a5a..8b10c36 100644 --- a/lib/AsmParser/ParserInternals.h +++ b/lib/AsmParser/ParserInternals.h
@@ -170,7 +170,7 @@ struct BBPlaceHolderHelper : public BasicBlock { BBPlaceHolderHelper(const Type *Ty) : BasicBlock() { - assert(Ty->isLabelType()); + assert(Ty == Type::LabelTy); } };