Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRShiftExpand.cpp119 Value *ValueShifted; in expand() local
122 ValueShifted = Builder.CreateShl(ValuePHI, ConstantInt::get(InputTy, 1)); in expand()
125 ValueShifted = Builder.CreateLShr(ValuePHI, ConstantInt::get(InputTy, 1)); in expand()
128 ValueShifted = Builder.CreateAShr(ValuePHI, ConstantInt::get(InputTy, 1)); in expand()
133 ValuePHI->addIncoming(ValueShifted, LoopBB); in expand()
145 Result->addIncoming(ValueShifted, LoopBB); in expand()