llvm-6502/test/Transforms/IndVarsSimplify/2007-01-08-X86-64-Pointer.ll
Reid Spencer 737ec5130e For PR1043:
Bye, Bye Booly. Remove the use of the bool type from non-upgraded test
cases and from grep expressions. The parser doesn't accept it and the
asm writer doesn't produce it any more.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33183 91177308-0d34-0410-b5e6-96231b3b80d8
2007-01-13 05:06:52 +00:00

20 lines
462 B
LLVM

; RUN: llvm-as < %s | llc -march=x86-64 | grep '(%rdi,%rax,8)' &&
; RUN: llvm-as < %s | llc -march=x86-64 | not grep 'addq.*8'
define void %foo(double* %y) {
entry:
br label %bb
bb:
%i = phi i64 [ 0, %entry ], [ %k, %bb ]
%j = getelementptr double* %y, i64 %i
store double 0.000000e+00, double* %j
%k = add i64 %i, 1
%n = icmp eq i64 %k, 0
br i1 %n, label %return, label %bb
return:
ret void
}