mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
use FileCheck instead of grep for exact checking
llvm-svn: 270265
This commit is contained in:
parent
3d9ccfeab7
commit
f536e5debc
@ -1,8 +1,13 @@
|
|||||||
; RUN: opt < %s -instcombine -S | grep urem
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
||||||
|
; RUN: opt < %s -instcombine -S | FileCheck %s
|
||||||
|
|
||||||
define i64 @rem_unsigned(i64 %x1, i64 %y2) {
|
define i64 @rem_unsigned(i64 %x1, i64 %y2) {
|
||||||
%r = udiv i64 %x1, %y2
|
; CHECK-LABEL: @rem_unsigned(
|
||||||
%r7 = mul i64 %r, %y2
|
; CHECK-NEXT: [[R:%.*]] = urem i64 %x1, %y2
|
||||||
%r8 = sub i64 %x1, %r7
|
; CHECK-NEXT: ret i64 [[R]]
|
||||||
ret i64 %r8
|
;
|
||||||
|
%r = udiv i64 %x1, %y2
|
||||||
|
%r7 = mul i64 %r, %y2
|
||||||
|
%r8 = sub i64 %x1, %r7
|
||||||
|
ret i64 %r8
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user