HomeSort by relevance Sort by last modified time
    Searched refs:ConstantV (Results 1 - 2 of 2) sorted by null

  /external/llvm/unittests/Support/
ValueHandleTest.cpp 24 Constant *ConstantV;
28 ConstantV(ConstantInt::get(Type::getInt32Ty(getGlobalContext()), 0)),
29 BitcastV(new BitCastInst(ConstantV, Type::getInt32Ty(getGlobalContext()))) {
41 WVH = ConstantV;
42 EXPECT_EQ(ConstantV, WVH);
52 WeakVH ConstantWVH(ConstantV);
61 EXPECT_TRUE(BitcastWVH != ConstantV);
66 Value *CV = ConstantV;
77 EXPECT_EQ(BV < CV, BitcastWVH < ConstantV);
78 EXPECT_EQ(BV <= CV, BitcastWVH <= ConstantV);
    [all...]
  /external/llvm/unittests/IR/
ValueMapTest.cpp 26 Constant *ConstantV;
31 ConstantV(ConstantInt::get(Type::getInt32Ty(getGlobalContext()), 0)),
32 BitcastV(new BitCastInst(ConstantV, Type::getInt32Ty(getGlobalContext()))),
33 AddV(BinaryOperator::CreateAdd(ConstantV, ConstantV)) {

Completed in 59 milliseconds