Home | History | Annotate | Download | only in Orc

Lines Matching refs:Result

34     Value* Result = B.CreateCall(TestFunc);
35 B.CreateRet(Result);
93 int Result = MainFn();
94 EXPECT_EQ(Result, 42)
95 << "Eagerly JIT'd code did not return expected result";
117 int Result = MainFn();
118 EXPECT_EQ(Result, 42)
119 << "Lazily JIT'd code did not return expected result";
143 int Result = FooFn();
146 EXPECT_EQ(Result, 42)
147 << "Direct-callback JIT'd code did not return expected result";