Test that a landingpad gets the name provided when it was created (see commit

170318).

llvm-svn: 170886
This commit is contained in:
Duncan Sands 2012-12-21 12:03:03 +00:00
parent ea2d72253e
commit b535136495

View File

@ -99,6 +99,13 @@ TEST_F(IRBuilderTest, CreateCondBr) {
EXPECT_EQ(Weights, TI->getMetadata(LLVMContext::MD_prof));
}
TEST_F(IRBuilderTest, LandingPadName) {
IRBuilder<> Builder(BB);
LandingPadInst *LP = Builder.CreateLandingPad(Builder.getInt32Ty(),
Builder.getInt32(0), 0, "LP");
EXPECT_EQ(LP->getName(), "LP");
}
TEST_F(IRBuilderTest, GetIntTy) {
IRBuilder<> Builder(BB);
IntegerType *Ty1 = Builder.getInt1Ty();