Home | History | Annotate | Download | only in MCJIT

Lines Matching refs:FB1

193   // Module A { Extern FB1, Function FA which calls FB1 },
194 // Module B { Extern FA, Function FB1, Function FB2 which calls FA },
197 Function *&FB1, Function *&FB2) {
198 // Define FB1 in B.
200 FB1 = insertAccumulateFunction(B.get(), nullptr, "FB1");
202 // Declare FB1 in A (as an external).
204 Function *FB1Extern = insertExternalReferenceToFunction(A.get(), FB1);
206 // Define FA in A (with a call to FB1).