arch-has-returnaddr.mx raw

   1  //go:build !(avr || moxie.wasm)
   2  
   3  package runtime
   4  
   5  import "unsafe"
   6  
   7  const hasReturnAddr = true
   8  
   9  //export llvm.returnaddress
  10  func returnAddress(level uint32) unsafe.Pointer
  11