Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Analysis/
H A DConstantFolding.cpp1234 if (auto *CE0 = dyn_cast<ConstantExpr>(Ops0)) { in ConstantFoldCompareInstOperands() local
1236 if (CE0->getOpcode() == Instruction::IntToPtr) { in ConstantFoldCompareInstOperands()
1248 if (CE0->getOpcode() == Instruction::PtrToInt) { in ConstantFoldCompareInstOperands()
1250 if (CE0->getType() == IntPtrTy) { in ConstantFoldCompareInstOperands()
1251 Constant *C = CE0->getOperand(0); in ConstantFoldCompareInstOperands()
1259 if (CE0->getOpcode() == CE1->getOpcode()) { in ConstantFoldCompareInstOperands()
1260 if (CE0->getOpcode() == Instruction::IntToPtr) { in ConstantFoldCompareInstOperands()
1274 if (CE0->getOpcode() == Instruction::PtrToInt) { in ConstantFoldCompareInstOperands()
1276 if (CE0->getType() == IntPtrTy && in ConstantFoldCompareInstOperands()
1290 Predicate, CE0->getOperand(0), Ops1, DL, TLI); in ConstantFoldCompareInstOperands()
[all …]
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dsizeof-expression.cpp147 int CE0 = sizeof sizeof(char); variable