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
#clear_exact!, #clear_nsw!, #clear_nuw!, #exact!, from_ptr, #inspect, #next, #nsw!, #nuw!, #opcode, #parent, #previous
Methods inherited from User
Methods inherited from Value
#add_attribute, #allocated_type, #allocated_type?, #constant?, #dump, from_ptr, from_ptr_kind, #gep_source_element_type, #gep_source_element_type?, #global_parent, #kind, #name, #name=, #null?, #poison?, #remove_attribute, to_ptr, #to_s, type, #type, #undef?
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.
1300 1301 1302 |
# File 'lib/llvm/core/value.rb', line 1300 def add_dest(dest) C.add_destination(self, dest) end |