mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Go bindings: remove contextless metadata bindings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224175 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4e703f82f2
commit
77f0100f1f
@ -729,22 +729,11 @@ func (c Context) MDString(str string) (v Value) {
|
||||
v.C = C.LLVMMDStringInContext(c.C, cstr, C.unsigned(len(str)))
|
||||
return
|
||||
}
|
||||
func MDString(str string) (v Value) {
|
||||
cstr := C.CString(str)
|
||||
defer C.free(unsafe.Pointer(cstr))
|
||||
v.C = C.LLVMMDString(cstr, C.unsigned(len(str)))
|
||||
return
|
||||
}
|
||||
func (c Context) MDNode(vals []Value) (v Value) {
|
||||
ptr, nvals := llvmValueRefs(vals)
|
||||
v.C = C.LLVMMDNodeInContext(c.C, ptr, nvals)
|
||||
return
|
||||
}
|
||||
func MDNode(vals []Value) (v Value) {
|
||||
ptr, nvals := llvmValueRefs(vals)
|
||||
v.C = C.LLVMMDNode(ptr, nvals)
|
||||
return
|
||||
}
|
||||
|
||||
// Operations on scalar constants
|
||||
func ConstInt(t Type, n uint64, signExtend bool) (v Value) {
|
||||
|
Loading…
Reference in New Issue
Block a user