Home
last modified time | relevance | path

Searched refs:VThree (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/Support/
H A DInstructionCostTest.cpp32 InstructionCost VThree = 3; in TEST_F() local
40 EXPECT_NE(VThree, VNegTwo); in TEST_F()
41 EXPECT_GT(VThree, VNegTwo); in TEST_F()
46 EXPECT_LT(VThree, ITwo); in TEST_F()
47 EXPECT_GE(ITwo, VThree); in TEST_F()
63 EXPECT_EQ(++VThree, 4); in TEST_F()
64 EXPECT_EQ(VThree++, 4); in TEST_F()
65 EXPECT_EQ(VThree, 5); in TEST_F()
66 EXPECT_EQ(--VThree, 4); in TEST_F()
67 EXPECT_EQ(VThree--, 4); in TEST_F()
[all …]