--- [ Array constants ] ----------------------------------------------------- Array is an LLVM IR array constant.
| 12 | |
| 13 | // Array is an LLVM IR array constant. |
| 14 | type Array struct { |
| 15 | // Array type. |
| 16 | Typ *types.ArrayType |
| 17 | // Array elements. |
| 18 | Elems []Constant |
| 19 | } |
| 20 | |
| 21 | // NewArray returns a new array constant based on the given array type and |
| 22 | // elements. The array type is infered from the type of the elements if t is |
nothing calls this directly
no outgoing calls
no test coverage detected