mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-21 01:06:46 +00:00
Test that a landingpad gets the name provided when it was created (see commit
170318). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170886 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3333e66822
commit
6e591ea0b9
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user