Home
last modified time | relevance | path

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

/llvm-project/clang-tools-extra/test/clang-tidy/checkers/hicpp/
H A Dsigned-bitwise.cpp195 IntOne, enumerator
209 OldSigned s1 = IntOne, s2 = IntTwo; in classicEnums()
211 s3 = IntOne | IntTwo; // Signed in classicEnums()
215 s3 = IntOne & IntTwo; // Signed in classicEnums()
219 s3 = IntOne ^ IntTwo; // Signed in classicEnums()
/llvm-project/llvm/unittests/CodeGen/GlobalISel/
H A DPatternMatchTest.cpp738 Register IntOne = B.buildConstant(LLT::scalar(64), 1).getReg(0); in TEST_F()
743 EXPECT_TRUE(mi_match(IntOne, *MRI, m_GCst(ValReg))); in TEST_F()
744 EXPECT_EQ(IntOne, ValReg->VReg); in TEST_F()
745 EXPECT_FALSE(mi_match(IntOne, *MRI, m_GFCst(FValReg))); in TEST_F()
707 Register IntOne = B.buildConstant(LLT::scalar(64), 1).getReg(0); TEST_F() local