Class: LLVM::IndirectBr

Inherits:
Instruction show all
Defined in:
lib/llvm/core/value.rb

Instance Method Summary collapse

Methods inherited from Instruction

#next, #parent, #previous

Methods inherited from User

#operands

Methods inherited from Value

#add_attribute, #constant?, #dump, from_ptr, #name, #name=, #null?, #remove_attribute, to_ptr, #type, type, #undefined?

Methods included from PointerIdentity

#==, #eql?, #hash, #to_ptr

Instance Method Details

#add_dest(dest) ⇒ Object Also known as: <<

Adds a basic block reference as a destination for this indirect branch.



999
1000
1001
# File 'lib/llvm/core/value.rb', line 999

def add_dest(dest)
  C.add_destination(self, dest)
end