diff options
author | Haojian Wu <hokein@google.com> | 2018-06-28 16:25:57 +0000 |
---|---|---|
committer | Haojian Wu <hokein@google.com> | 2018-06-28 16:25:57 +0000 |
commit | 2103990e63a31e53a32434231b4faf4a00b6469b (patch) | |
tree | ea4de9fa4b899ca3bf55d9873eae046aab2b1763 /llvm/test/CodeGen/Hexagon | |
parent | 83125594ed16faa79b4cdffb168e4588366b2348 (diff) | |
download | bcm5719-llvm-2103990e63a31e53a32434231b4faf4a00b6469b.tar.gz bcm5719-llvm-2103990e63a31e53a32434231b4faf4a00b6469b.zip |
Revert "[DAGCombiner] Ensure we use the correct CC result type in visitSDIV"
This reverts commit r335821.
This crashes the webassembly test, run "ninja check-llvm-codegen-webassembly" to reproduce.
llvm-svn: 335871
Diffstat (limited to 'llvm/test/CodeGen/Hexagon')
-rw-r--r-- | llvm/test/CodeGen/Hexagon/sdiv-minsigned.ll | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/llvm/test/CodeGen/Hexagon/sdiv-minsigned.ll b/llvm/test/CodeGen/Hexagon/sdiv-minsigned.ll deleted file mode 100644 index 06b4dc1ceda..00000000000 --- a/llvm/test/CodeGen/Hexagon/sdiv-minsigned.ll +++ /dev/null @@ -1,14 +0,0 @@ -; RUN: llc -march=hexagon < %s | FileCheck %s -; REQUIRES: asserts - -; This checks for a bug in the DAG combiner where a SETCC was created with -; an illegal return type. Make sure it compiles successfully. -; CHECK: r0 = cmp.eq(r0,##-2147483648) - -define i32 @f0(i32 %a0) #0 { -entry: - %v0 = sdiv i32 %a0, -2147483648 - ret i32 %v0 -} - -attributes #0 = { noinline nounwind "target-cpu"="hexagonv60" } |