binary-op-class ( info1 info2 -- newclass )


Vocabulary
compiler.tree.propagation.known-words

Inputs
info1a value-info-state
info2a value-info-state


Outputs
newclassa class


Word description
Given two value infos return the math class which is large enough for both of them.

Examples
USING: compiler.tree.propagation.known-words compiler.tree.propagation.info kernel math prettyprint ; bignum real [ <class-info> ] bi@ binary-op-class .
real


Definition