diff options
| author | Nemanja Ivanovic <nemanja.i.ibm@gmail.com> | 2018-08-27 11:20:27 +0000 |
|---|---|---|
| committer | Nemanja Ivanovic <nemanja.i.ibm@gmail.com> | 2018-08-27 11:20:27 +0000 |
| commit | f2588a28a84e80cb6f4d95da6d84bee060ae43ec (patch) | |
| tree | 2237e7baea97481e288e7f47f570e634df82ff67 /llvm/test/CodeGen | |
| parent | 2739596063a914f4a1918bde30e72d50fea856c2 (diff) | |
| download | bcm5719-llvm-f2588a28a84e80cb6f4d95da6d84bee060ae43ec.tar.gz bcm5719-llvm-f2588a28a84e80cb6f4d95da6d84bee060ae43ec.zip | |
[PowerPC] Recommit r340016 after fixing the reported issue
The internal benchmark failure reported by Google was due to a missing
check for the result type for the sign-extend and shift DAG. This commit
adds the check and re-commits the patch.
llvm-svn: 340734
Diffstat (limited to 'llvm/test/CodeGen')
| -rw-r--r-- | llvm/test/CodeGen/PowerPC/extswsli.ll | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/PowerPC/extswsli.ll b/llvm/test/CodeGen/PowerPC/extswsli.ll new file mode 100644 index 00000000000..62014aa1042 --- /dev/null +++ b/llvm/test/CodeGen/PowerPC/extswsli.ll @@ -0,0 +1,17 @@ +; 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 +} |

