diff options
author | David Blaikie <dblaikie@gmail.com> | 2015-02-27 23:29:33 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2015-02-27 23:29:33 +0000 |
commit | d7e13b0eb230d643990d44d731df8de6fc6f021d (patch) | |
tree | a77af737008e9990ab06a9c4dd559338e22c094e /llvm/test/CodeGen/SystemZ/Large/branch-range-08.py | |
parent | c817fd22735b1b7b84855dd3fc462b26aca1747e (diff) | |
download | bcm5719-llvm-d7e13b0eb230d643990d44d731df8de6fc6f021d.tar.gz bcm5719-llvm-d7e13b0eb230d643990d44d731df8de6fc6f021d.zip |
Update SystemZ/Large test generators to handle new load IR syntax
llvm-svn: 230809
Diffstat (limited to 'llvm/test/CodeGen/SystemZ/Large/branch-range-08.py')
-rw-r--r-- | llvm/test/CodeGen/SystemZ/Large/branch-range-08.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/SystemZ/Large/branch-range-08.py b/llvm/test/CodeGen/SystemZ/Large/branch-range-08.py index ac1b1370a3e..80256bc5df6 100644 --- a/llvm/test/CodeGen/SystemZ/Large/branch-range-08.py +++ b/llvm/test/CodeGen/SystemZ/Large/branch-range-08.py @@ -41,7 +41,7 @@ print 'entry:' for i in xrange(branch_blocks - 1, -1, -1): print ' %%countptr%d = getelementptr i64 *%%counts, i64 %d' % (i, i) - print ' %%initcount%d = load i64 *%%countptr%d' % (i, i) + print ' %%initcount%d = load i64 , i64 *%%countptr%d' % (i, i) print ' br label %%loop%d' % i print 'loop%d:' % i |