Move testcase to the code gen directory.
[oota-llvm.git] / test / CodeGen / PowerPC / 2008-01-25-EmptyFunction.c
1 // RUN: %llvmgcc -O2 -S -o - -emit-llvm %s | grep llvm.trap
2 // RUN: %llvmgcc -O2 -S -o - -emit-llvm %s | grep unreachable
3
4 void bork() {
5   int *address = 0;
6   *address = 0;
7 }