update test to use FileCheck and autogenerated checks

llvm-svn: 278714
This commit is contained in:
Sanjay Patel 2016-08-15 18:56:10 +00:00
parent bb8652312a
commit 6866b82a05
1 changed files with 12 additions and 3 deletions

View File

@ -1,7 +1,16 @@
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt < %s -instcombine -S | FileCheck %s
; For PR1248
; RUN: opt < %s -instcombine -S | grep "ugt i32 .*, 11"
define i1 @test(i32 %tmp6) {
%tmp7 = sdiv i32 %tmp6, 12 ; <i32> [#uses=1]
icmp ne i32 %tmp7, -6 ; <i1>:1 [#uses=1]
; CHECK-LABEL: @test(
; CHECK-NEXT: [[TMP6_OFF:%.*]] = add i32 %tmp6, 83
; CHECK-NEXT: [[TMP1:%.*]] = icmp ugt i32 [[TMP6_OFF]], 11
; CHECK-NEXT: ret i1 [[TMP1]]
;
%tmp7 = sdiv i32 %tmp6, 12
icmp ne i32 %tmp7, -6
ret i1 %1
}