forked from OSchip/llvm-project
Rewrite test to not use a FileCheck variable and redefine it on the same line.
In preparation for the FileCheck functionality change which will allow using a variable later on the same line. No functionality change. llvm-svn: 168588
This commit is contained in:
parent
4e629f7964
commit
eaf1a28594
|
@ -12,11 +12,11 @@ entry:
|
||||||
; Note that only parts of the sequence are checked for here, to allow
|
; Note that only parts of the sequence are checked for here, to allow
|
||||||
; for minor code generation differences.
|
; for minor code generation differences.
|
||||||
|
|
||||||
; CHECK: sradi [[REGISTER:[0-9]+]], 3, 53
|
; CHECK: sradi [[REG1:[0-9]+]], 3, 53
|
||||||
; CHECK: addi [[REGISTER:[0-9]+]], [[REGISTER]], 1
|
; CHECK: addi [[REG2:[0-9]+]], [[REG1]], 1
|
||||||
; CHECK: cmpldi 0, [[REGISTER]], 1
|
; CHECK: cmpldi 0, [[REG2]], 1
|
||||||
; CHECK: isel [[REGISTER:[0-9]+]], {{[0-9]+}}, 3, 1
|
; CHECK: isel [[REG3:[0-9]+]], {{[0-9]+}}, 3, 1
|
||||||
; CHECK: std [[REGISTER]], -{{[0-9]+}}(1)
|
; CHECK: std [[REG3]], -{{[0-9]+}}(1)
|
||||||
|
|
||||||
|
|
||||||
; Also check that with -enable-unsafe-fp-math we do not get that extra
|
; Also check that with -enable-unsafe-fp-math we do not get that extra
|
||||||
|
|
Loading…
Reference in New Issue