aboutsummaryrefslogtreecommitdiff
path: root/libgo/runtime/go-breakpoint.c
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/runtime/go-breakpoint.c')
-rw-r--r--libgo/runtime/go-breakpoint.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/libgo/runtime/go-breakpoint.c b/libgo/runtime/go-breakpoint.c
deleted file mode 100644
index e403a2a..0000000
--- a/libgo/runtime/go-breakpoint.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* go-breakpoint.c -- the runtime.Breakpoint function.
-
- Copyright 2009 The Go Authors. All rights reserved.
- Use of this source code is governed by a BSD-style
- license that can be found in the LICENSE file. */
-
-#include <sched.h>
-
-#include "runtime.h"
-
-void Breakpoint (void) __asm__ (GOSYM_PREFIX "runtime.Breakpoint");
-
-void
-Breakpoint (void)
-{
- __builtin_trap ();
-}