Class: LLVM::CallInst
- Inherits:
-
Instruction
- Object
- Value
- User
- Instruction
- LLVM::CallInst
- Defined in:
- lib/llvm/core/value.rb
Instance Method Summary collapse
-
#call_conv ⇒ Object
Returns the call insatnce’s call convention.
-
#call_conv=(conv) ⇒ Object
Sets the call convention to conv.
Methods inherited from Instruction
Methods inherited from User
Methods inherited from Value
#==, #add_attribute, #constant?, #dump, #eql?, from_ptr, #hash, #name, #name=, #null?, to_ptr, #to_ptr, type, #type, #undefined?
Instance Method Details
#call_conv ⇒ Object
Returns the call insatnce’s call convention.
747 748 749 |
# File 'lib/llvm/core/value.rb', line 747 def call_conv C.LLVMGetInstructionCallConv(self) end |
#call_conv=(conv) ⇒ Object
Sets the call convention to conv.
741 742 743 744 |
# File 'lib/llvm/core/value.rb', line 741 def call_conv=(conv) C.LLVMSetInstructionCallConv(self, conv) conv end |