Skip to content

Commit

Permalink
Merge pull request #3 from xushiwei/q
Browse files Browse the repository at this point in the history
Context/Module.Finalize
  • Loading branch information
xushiwei authored Apr 14, 2024
2 parents 7bf39cd + b8e349e commit 1020ca7
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions z_finalize.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*
* Copyright (c) 2024 The GoPlus Authors (goplus.org). All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package llvm

/*
#include "llvm-c/Core.h"
*/
import "C"
import "runtime"

func (c Context) Finalize() {
runtime.SetFinalizer(c.C, func(c C.LLVMContextRef) {
Context{c}.Dispose()
})
}

func (m Module) Finalize() {
runtime.SetFinalizer(m.C, func(m C.LLVMModuleRef) {
Module{m}.Dispose()
})
}

0 comments on commit 1020ca7

Please sign in to comment.