mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 17:37:24 +00:00
8 lines
175 B
LLVM
8 lines
175 B
LLVM
|
// RUN: %llvmgcc -O2 -S -o - -emit-llvm %s | grep llvm.trap
|
||
|
// RUN: %llvmgcc -O2 -S -o - -emit-llvm %s | grep unreachable
|
||
|
|
||
|
void bork() {
|
||
|
int *address = 0;
|
||
|
*address = 0;
|
||
|
}
|