reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
26 EXPECT_EQ(0, I); 27 I = Intrinsic::lookupLLVMIntrinsicByName(NameTable1, "llvm.foo.f64"); 28 EXPECT_EQ(0, I); 29 I = Intrinsic::lookupLLVMIntrinsicByName(NameTable1, "llvm.foo.b"); 30 EXPECT_EQ(2, I); 31 I = Intrinsic::lookupLLVMIntrinsicByName(NameTable1, "llvm.foo.b.a"); 32 EXPECT_EQ(3, I); 33 I = Intrinsic::lookupLLVMIntrinsicByName(NameTable1, "llvm.foo.c"); 34 EXPECT_EQ(4, I); 35 I = Intrinsic::lookupLLVMIntrinsicByName(NameTable1, "llvm.foo.c.f64"); 36 EXPECT_EQ(4, I);