Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: cd52d1ee9a92587b242d946a2300a3245d3b885a authored by Linus Torvalds on 12 November 2005, 01:43:36 UTC
Linux v2.6.15-rc1
Tip revision: cd52d1e
bug.h
#ifndef _SPARC64_BUG_H
#define _SPARC64_BUG_H

#ifdef CONFIG_BUG
#include <linux/compiler.h>

#ifdef CONFIG_DEBUG_BUGVERBOSE
extern void do_BUG(const char *file, int line);
#define BUG() do {					\
	do_BUG(__FILE__, __LINE__);			\
	__builtin_trap();				\
} while (0)
#else
#define BUG()		__builtin_trap()
#endif

#define HAVE_ARCH_BUG
#endif

#include <asm-generic/bug.h>

#endif
back to top