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

References

unittests/IR/FunctionTest.cpp
   55   EXPECT_TRUE(F1->hasLazyArguments());
   62   F1->stealArgumentListFrom(*F2);
   63   EXPECT_TRUE(F1->hasLazyArguments());
   69   for (Argument &A : F1->args())
   72   EXPECT_FALSE(F1->hasLazyArguments());
   77   F2->stealArgumentListFrom(*F1);
   78   EXPECT_TRUE(F1->hasLazyArguments());
   90   for (Argument &A : F1->args()) {
   95   EXPECT_FALSE(F1->hasLazyArguments());
  101   F1->stealArgumentListFrom(*F2);
  102   EXPECT_FALSE(F1->hasLazyArguments());
  105   for (Argument &A : F1->args()) {
  115   F1->stealArgumentListFrom(*F2);
  116   EXPECT_TRUE(F1->hasLazyArguments());