[llvm] r337230 - [testcases] move testcases to right place - NFC
Chen Zheng via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 16 18:04:41 PDT 2018
Author: shchenz
Date: Mon Jul 16 18:04:41 2018
New Revision: 337230
URL: http://llvm.org/viewvc/llvm-project?rev=337230&view=rev
Log:
[testcases] move testcases to right place - NFC
Differential Revision: https://reviews.llvm.org/D49409
Added:
llvm/trunk/test/Transforms/InstSimplify/sdiv.ll
Removed:
llvm/trunk/test/Transforms/InstCombine/sdiv.ll
Removed: llvm/trunk/test/Transforms/InstCombine/sdiv.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstCombine/sdiv.ll?rev=337229&view=auto
==============================================================================
--- llvm/trunk/test/Transforms/InstCombine/sdiv.ll (original)
+++ llvm/trunk/test/Transforms/InstCombine/sdiv.ll (removed)
@@ -1,49 +0,0 @@
-; RUN: opt < %s -instcombine -S | FileCheck %s
-
-define i32 @negated_operand(i32 %x) {
-; CHECK-LABEL: @negated_operand(
-; CHECK-NEXT: [[NEGX:%.*]] = sub nsw i32 0, [[X:%.*]]
-; CHECK-NEXT: [[DIV:%.*]] = sdiv i32 [[NEGX]], [[X]]
-; CHECK-NEXT: ret i32 [[DIV]]
-;
- %negx = sub nsw i32 0, %x
- %div = sdiv i32 %negx, %x
- ret i32 %div
-}
-
-define <2 x i32> @negated_operand_commute_vec(<2 x i32> %x) {
-; CHECK-LABEL: @negated_operand_commute_vec(
-; CHECK-NEXT: [[NEGX:%.*]] = sub nsw <2 x i32> zeroinitializer, [[X:%.*]]
-; CHECK-NEXT: [[DIV:%.*]] = sdiv <2 x i32> [[NEGX]], [[X]]
-; CHECK-NEXT: ret <2 x i32> [[DIV]]
-;
- %negx = sub nsw <2 x i32> zeroinitializer, %x
- %div = sdiv <2 x i32> %negx, %x
- ret <2 x i32> %div
-}
-
-define i32 @knownnegation(i32 %x, i32 %y) {
-; CHECK-LABEL: @knownnegation(
-; CHECK-NEXT: [[XY:%.*]] = sub nsw i32 [[X:%.*]], [[Y:%.*]]
-; CHECK-NEXT: [[YX:%.*]] = sub nsw i32 [[Y]], [[X]]
-; CHECK-NEXT: [[DIV:%.*]] = sdiv i32 [[XY]], [[YX]]
-; CHECK-NEXT: ret i32 [[DIV]]
-;
- %xy = sub nsw i32 %x, %y
- %yx = sub nsw i32 %y, %x
- %div = sdiv i32 %xy, %yx
- ret i32 %div
-}
-
-define <2 x i32> @knownnegation_commute_vec(<2 x i32> %x, <2 x i32> %y) {
-; CHECK-LABEL: @knownnegation_commute_vec(
-; CHECK-NEXT: [[XY:%.*]] = sub nsw <2 x i32> [[X:%.*]], [[Y:%.*]]
-; CHECK-NEXT: [[YX:%.*]] = sub nsw <2 x i32> [[Y]], [[X]]
-; CHECK-NEXT: [[DIV:%.*]] = sdiv <2 x i32> [[XY]], [[YX]]
-; CHECK-NEXT: ret <2 x i32> [[DIV]]
-;
- %xy = sub nsw <2 x i32> %x, %y
- %yx = sub nsw <2 x i32> %y, %x
- %div = sdiv <2 x i32> %xy, %yx
- ret <2 x i32> %div
-}
Added: llvm/trunk/test/Transforms/InstSimplify/sdiv.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstSimplify/sdiv.ll?rev=337230&view=auto
==============================================================================
--- llvm/trunk/test/Transforms/InstSimplify/sdiv.ll (added)
+++ llvm/trunk/test/Transforms/InstSimplify/sdiv.ll Mon Jul 16 18:04:41 2018
@@ -0,0 +1,49 @@
+; RUN: opt < %s -instsimplify -S | FileCheck %s
+
+define i32 @negated_operand(i32 %x) {
+; CHECK-LABEL: @negated_operand(
+; CHECK-NEXT: [[NEGX:%.*]] = sub nsw i32 0, [[X:%.*]]
+; CHECK-NEXT: [[DIV:%.*]] = sdiv i32 [[NEGX]], [[X]]
+; CHECK-NEXT: ret i32 [[DIV]]
+;
+ %negx = sub nsw i32 0, %x
+ %div = sdiv i32 %negx, %x
+ ret i32 %div
+}
+
+define <2 x i32> @negated_operand_commute_vec(<2 x i32> %x) {
+; CHECK-LABEL: @negated_operand_commute_vec(
+; CHECK-NEXT: [[NEGX:%.*]] = sub nsw <2 x i32> zeroinitializer, [[X:%.*]]
+; CHECK-NEXT: [[DIV:%.*]] = sdiv <2 x i32> [[NEGX]], [[X]]
+; CHECK-NEXT: ret <2 x i32> [[DIV]]
+;
+ %negx = sub nsw <2 x i32> zeroinitializer, %x
+ %div = sdiv <2 x i32> %negx, %x
+ ret <2 x i32> %div
+}
+
+define i32 @knownnegation(i32 %x, i32 %y) {
+; CHECK-LABEL: @knownnegation(
+; CHECK-NEXT: [[XY:%.*]] = sub nsw i32 [[X:%.*]], [[Y:%.*]]
+; CHECK-NEXT: [[YX:%.*]] = sub nsw i32 [[Y]], [[X]]
+; CHECK-NEXT: [[DIV:%.*]] = sdiv i32 [[XY]], [[YX]]
+; CHECK-NEXT: ret i32 [[DIV]]
+;
+ %xy = sub nsw i32 %x, %y
+ %yx = sub nsw i32 %y, %x
+ %div = sdiv i32 %xy, %yx
+ ret i32 %div
+}
+
+define <2 x i32> @knownnegation_commute_vec(<2 x i32> %x, <2 x i32> %y) {
+; CHECK-LABEL: @knownnegation_commute_vec(
+; CHECK-NEXT: [[XY:%.*]] = sub nsw <2 x i32> [[X:%.*]], [[Y:%.*]]
+; CHECK-NEXT: [[YX:%.*]] = sub nsw <2 x i32> [[Y]], [[X]]
+; CHECK-NEXT: [[DIV:%.*]] = sdiv <2 x i32> [[XY]], [[YX]]
+; CHECK-NEXT: ret <2 x i32> [[DIV]]
+;
+ %xy = sub nsw <2 x i32> %x, %y
+ %yx = sub nsw <2 x i32> %y, %x
+ %div = sdiv <2 x i32> %xy, %yx
+ ret <2 x i32> %div
+}
More information about the llvm-commits
mailing list