Fix bootstrap/PR63632
[official-gcc.git] / libgo / go / reflect / makefunc_dummy.c
blob8eff0c1dfacd0dac7dd1c607abf1f3be7da1adbe
1 // Copyright 2013 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 #include "runtime.h"
7 /* Dummy function for processors that implement MakeFunc using FFI
8 rather than having builtin support. */
10 void makeFuncStub (void) __asm__ ("reflect.makeFuncStub");
12 void makeFuncStub (void)
14 runtime_throw ("impossible call to makeFuncStub");