class RLTK::CG::PhiInst
An Instruction
representing a Phi node.
@see en.wikipedia.org/wiki/Static_single_assignment_form @LLVMInst phi
Public Instance Methods
incoming()
click to toggle source
@return [IncomingCollection] Proxy object for inspecting the incoming {BasicBlock}/{Value} pairs.
# File lib/rltk/cg/instruction.rb, line 168 def incoming @incoming_collection ||= IncomingCollection.new(self) end