diff options
author | Nemanja Ivanovic <nemanja.i.ibm@gmail.com> | 2018-08-17 12:41:49 +0000 |
---|---|---|
committer | Nemanja Ivanovic <nemanja.i.ibm@gmail.com> | 2018-08-17 12:41:49 +0000 |
commit | 7d272513236d86e031b0ebf9062d270805aa929c (patch) | |
tree | 2f876c90c43470f5266105c8ab34a2034f08e1dd | |
parent | 39751276b0aa7b22e50c40913b4c9f8e8a449c51 (diff) | |
download | bcm5719-llvm-7d272513236d86e031b0ebf9062d270805aa929c.tar.gz bcm5719-llvm-7d272513236d86e031b0ebf9062d270805aa929c.zip |
Revert extraneous directory added by accident in rL340016
It appears that the way this patch was produced ended up creating an
extra 'llvm' directory where the test was placed. When I committed the
patch, that directory ended up being created upstream. This commit should
revert that.
Sorry for the noise.
llvm-svn: 340017
-rw-r--r-- | llvm/llvm/test/CodeGen/PowerPC/extswsli.ll | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/llvm/llvm/test/CodeGen/PowerPC/extswsli.ll b/llvm/llvm/test/CodeGen/PowerPC/extswsli.ll deleted file mode 100644 index 62014aa1042..00000000000 --- a/llvm/llvm/test/CodeGen/PowerPC/extswsli.ll +++ /dev/null @@ -1,17 +0,0 @@ -; RUN: llc -verify-machineinstrs -mtriple=powerpc64le-unknown-linux-gnu \ -; RUN: -mcpu=pwr9 -ppc-asm-full-reg-names < %s | FileCheck %s - -@z = external local_unnamed_addr global i32*, align 8 - -; Function Attrs: norecurse nounwind readonly -define signext i32 @_Z2tcii(i32 signext %x, i32 signext %y) local_unnamed_addr #0 { -entry: - %0 = load i32*, i32** @z, align 8 - %add = add nsw i32 %y, %x - %idxprom = sext i32 %add to i64 - %arrayidx = getelementptr inbounds i32, i32* %0, i64 %idxprom - %1 = load i32, i32* %arrayidx, align 4 - ret i32 %1 -; CHECK-LABEL: @_Z2tcii -; CHECK: extswsli {{r[0-9]+}}, {{r[0-9]+}}, 2 -} |