SetConstant makes this global constant.
(constant bool)
| 331 | |
| 332 | // SetConstant makes this global constant. |
| 333 | func (g Global) SetConstant(constant bool) Global { |
| 334 | g.llvm.SetGlobalConstant(constant) |
| 335 | return g |
| 336 | } |
| 337 | |
| 338 | // ZeroGlobal returns a zero-initialized new global variable with the specified |
| 339 | // name and type. |