Create an l shr instruction.
Declared in <llvm/IR/IRBuilder.h>
Create an l shr instruction.
Value*
CreateLShr(
Value* LHS,
uint64_t RHS,
Twine const& Name = "",
bool isExact = false);
» more...
Create an l shr instruction.
Value*
CreateLShr(
Value* LHS,
APInt const& RHS,
Twine const& Name = "",
bool isExact = false);
» more...
Create an l shr instruction.
Value*
CreateLShr(
Value* LHS,
Value* RHS,
Twine const& Name = "",
bool isExact = false);
» more...
The created l shr instruction.
| Name | Description |
|---|---|
| LHS | Left-hand side operand. |
| RHS | Right-hand side operand. |
| Name | Name of the new instruction or value. |
| isExact | Whether to set the exact flag. |