OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libgo/] [runtime/] [go-assert.h] - Blame information for rev 747

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 747 jeremybenn
/* go-assert.h -- libgo specific assertions
2
 
3
   Copyright 2010 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.  */
6
 
7
#ifndef LIBGO_GO_ASSERT_H
8
#define LIBGO_GO_ASSERT_H
9
 
10
/* We use a Go specific assert function so that functions which call
11
   assert aren't required to always split the stack.  */
12
 
13
extern void __go_assert_fail (const char *file, unsigned int lineno)
14
  __attribute__ ((noreturn));
15
 
16
#define __go_assert(e) ((e) ? (void) 0 : __go_assert_fail (__FILE__, __LINE__))
17
 
18
#endif /* !defined(LIBGO_GO_ASSERT_H) */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.