MCPcopy Create free account
hub / github.com/llir/llvm / NewFDiv

Function NewFDiv

ir/inst_binary.go:546–551  ·  view source on GitHub ↗

NewFDiv returns a new fdiv instruction based on the given operands.

(x, y value.Value)

Source from the content-addressed store, hash-verified

544
545// NewFDiv returns a new fdiv instruction based on the given operands.
546func NewFDiv(x, y value.Value) *InstFDiv {
547 inst := &InstFDiv{X: x, Y: y}
548 // Compute type.
549 inst.Type()
550 return inst
551}
552
553// String returns the LLVM syntax representation of the instruction as a
554// type-value pair.

Callers 1

NewFDivMethod · 0.70

Calls 1

TypeMethod · 0.95

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…