aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.c
blob: 896738ee0637b1601d6637a47bf15e213c87077c (plain)
1
2
3
4
5
6
7
// 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;
}