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.cpp118 Value *ValueShifted; in expand() local
121 ValueShifted = Builder.CreateShl(ValuePHI, ConstantInt::get(InputTy, 1)); in expand()
124 ValueShifted = Builder.CreateLShr(ValuePHI, ConstantInt::get(InputTy, 1)); in expand()
127 ValueShifted = Builder.CreateAShr(ValuePHI, ConstantInt::get(InputTy, 1)); in expand()
132 ValuePHI->addIncoming(ValueShifted, LoopBB); in expand()
144 Result->addIncoming(ValueShifted, LoopBB); in expand()