aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/csmith
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/csmith')
-rw-r--r--scripts/csmith/syscalls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/csmith/syscalls.c b/scripts/csmith/syscalls.c
index f12b07e..cdf872f 100644
--- a/scripts/csmith/syscalls.c
+++ b/scripts/csmith/syscalls.c
@@ -44,7 +44,7 @@ void unimplemented_syscall()
const char *p = "Unimplemented system call called!\n";
while (*p)
*(volatile int*)0x10000000 = *(p++);
- asm volatile ("sbreak");
+ asm volatile ("ebreak");
__builtin_unreachable();
}
@@ -89,7 +89,7 @@ void *sbrk(ptrdiff_t incr)
void _exit(int exit_status)
{
- asm volatile ("sbreak");
+ asm volatile ("ebreak");
__builtin_unreachable();
}