mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-30 16:48:40 +00:00
9092dbcc53
the new import path is:
tinygo.org/x/go-llvm
18 lines
372 B
Go
18 lines
372 B
Go
package interp
|
|
|
|
// This file provides useful types for errors encountered during IR evaluation.
|
|
|
|
import (
|
|
"tinygo.org/x/go-llvm"
|
|
)
|
|
|
|
type Unsupported struct {
|
|
Inst llvm.Value
|
|
}
|
|
|
|
func (e Unsupported) Error() string {
|
|
// TODO: how to return the actual instruction string?
|
|
// It looks like LLVM provides no function for that...
|
|
return "interp: unsupported instruction"
|
|
}
|