OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NegLo
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp
202
Constant*
NegLo
= ConstantExpr::getNeg(Leaf.Low);
203
Instruction* Add = BinaryOperator::CreateAdd(Val,
NegLo
,
206
Constant *UpperBound = ConstantExpr::getAdd(
NegLo
, Leaf.High);
/external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp
356
Constant *
NegLo
= ConstantExpr::getNeg(Lo);
357
Value *Add = Builder->CreateAdd(V,
NegLo
, V->getName()+".off");
358
Constant *UpperBound = ConstantExpr::getAdd(
NegLo
, Hi);
375
ConstantInt *
NegLo
= cast<ConstantInt>(ConstantExpr::getNeg(Lo));
376
Value *Add = Builder->CreateAdd(V,
NegLo
, V->getName()+".off");
377
Constant *LowerBound = ConstantExpr::getAdd(
NegLo
, Hi);
[
all
...]
Completed in 23 milliseconds