From: Bill Wendling Date: Sat, 26 Jan 2008 06:53:40 +0000 (+0000) Subject: Rename the .c to .ll X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cd76af4a62d1c7ef4f71e5b02e2ae02382788574;p=oota-llvm.git Rename the .c to .ll git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46396 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.c b/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.c deleted file mode 100644 index 896738ee063..00000000000 --- a/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.c +++ /dev/null @@ -1,7 +0,0 @@ -// 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; -} diff --git a/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.ll b/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.ll new file mode 100644 index 00000000000..896738ee063 --- /dev/null +++ b/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.ll @@ -0,0 +1,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; +}