Class: LLVM::IndirectBr
- Inherits:
-
Instruction
- Object
- Value
- User
- Instruction
- LLVM::IndirectBr
- Defined in:
- lib/llvm/core/value.rb
Instance Method Summary collapse
-
#add_dest(dest) ⇒ Object
(also: #<<)
Adds a basic block reference as a destination for this indirect branch.
Methods inherited from Instruction
#next, #opcode, #parent, #previous
Methods inherited from User
Methods inherited from Value
#add_attribute, #allocated_type, #constant?, #dump, from_ptr, #name, #name=, #null?, #remove_attribute, to_ptr, #to_s, #type, type, #undefined?
Methods included from PointerIdentity
Instance Method Details
#add_dest(dest) ⇒ Object Also known as: <<
Adds a basic block reference as a destination for this indirect branch.
1040 1041 1042 |
# File 'lib/llvm/core/value.rb', line 1040 def add_dest(dest) C.add_destination(self, dest) end |