* const-uniq-1.c: Expand regex to match AIX XCOFF labels.
[official-gcc.git] / libgo / runtime / go-breakpoint.c
blob5eebe188bbe7152500c1e70c3d49f4a30058ba2d
1 /* go-breakpoint.c -- the runtime.Breakpoint function.
3 Copyright 2009 The Go Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file. */
7 #include <sched.h>
9 void Breakpoint (void) asm ("runtime.Breakpoint");
11 void
12 Breakpoint (void)
14 __builtin_trap ();