llvm-6502/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.ll
Bill Wendling cd76af4a62 Rename the .c to .ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46396 91177308-0d34-0410-b5e6-96231b3b80d8
2008-01-26 06:53:40 +00:00

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;
}