Change the x86 assembly output to use tab characters to separate the
[oota-llvm.git] / test / CodeGen / X86 / commute-two-addr.ll
1 ; The register allocator can commute two-address instructions to avoid
2 ; insertion of register-register copies.
3
4 ; Make sure there are only 3 mov's for each testcase
5 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | \
6 ; RUN:   grep {\\\<mov\\\>} | wc -l | grep 6
7
8
9 target triple = "i686-pc-linux-gnu"
10
11 %G = external global int
12
13 declare void %ext(int)
14
15 int %add_test(int %X, int %Y) {
16         %Z = add int %X, %Y      ;; Last use of Y, but not of X.
17         store int %Z, int* %G
18         ret int %X
19 }
20
21 int %xor_test(int %X, int %Y) {
22         %Z = xor int %X, %Y      ;; Last use of Y, but not of X.
23         store int %Z, int* %G
24         ret int %X
25 }