Class: LLVM::SwitchInst

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

Instance Method Summary collapse

Methods inherited from Instruction

#next, #opcode, #parent, #previous

Methods inherited from User

#operands

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

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

Instance Method Details

#add_case(val, block) ⇒ Object

Adds a case to a switch instruction. First the value to match on, then the basic block.



1031
1032
1033
# File 'lib/llvm/core/value.rb', line 1031

def add_case(val, block)
  C.add_case(self, val, block)
end