From: Chris Lattner Date: Fri, 2 Jan 2009 01:52:35 +0000 (+0000) Subject: rename a file to follow naming conventions. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=aca3e68dd8ff2664c20c1844cee722d821af51b8;p=oota-llvm.git rename a file to follow naming conventions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61550 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/PowerPC/2008-12-12-EH.ll b/test/CodeGen/PowerPC/2008-12-12-EH.ll new file mode 100644 index 00000000000..21218f55f03 --- /dev/null +++ b/test/CodeGen/PowerPC/2008-12-12-EH.ll @@ -0,0 +1,10 @@ +; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | grep ^.L_Z1fv.eh +; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-apple-darwin9 | grep ^__Z1fv.eh + +define void @_Z1fv() { +entry: + br label %return + +return: + ret void +} diff --git a/test/CodeGen/PowerPC/20081212.ll b/test/CodeGen/PowerPC/20081212.ll deleted file mode 100644 index 21218f55f03..00000000000 --- a/test/CodeGen/PowerPC/20081212.ll +++ /dev/null @@ -1,10 +0,0 @@ -; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | grep ^.L_Z1fv.eh -; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-apple-darwin9 | grep ^__Z1fv.eh - -define void @_Z1fv() { -entry: - br label %return - -return: - ret void -}