reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

unittests/IR/FunctionTest.cpp
  129   F->setSection(".text.test");
  130   EXPECT_TRUE(F->getSection() == ".text.test");
  131   EXPECT_TRUE(F->hasSection());
  132   F->setSection("");
  133   EXPECT_FALSE(F->hasSection());
  134   F->setSection(".text.test");
  135   F->setSection(".text.test2");
  136   EXPECT_TRUE(F->getSection() == ".text.test2");
  137   EXPECT_TRUE(F->hasSection());