[ARM] Add and adjust saturation tests for upcoming qadd changes. NFC
[llvm-core.git] / test / FileCheck / var-ref-same-line.txt
blob1755cefbf86471f60bfbb5718f24b48284489ff1
1 // Test for referencing a variable defined on the same line
2 // RUN: FileCheck -input-file %s %s
4 op1 r1, r2, r1
6 ; CHECK: op1 [[REG:r[0-9]+]], {{r[0-9]+}}, [[REG]]
8 op3 r1, r2, r1, r2
10 ; CHECK: op3 [[REG1:r[0-9]+]], [[REG2:r[0-9]+]], [[REG1]], [[REG2]]
12 op4 g1, g2, g1
14 ; Test that parens inside the regex don't confuse FileCheck
15 ; CHECK: {{([a-z]+[0-9])+}} [[REG:g[0-9]+]], {{g[0-9]+}}, [[REG]]