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-07.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-07.py')
-rw-r--r-- | llvm/test/CodeGen/SystemZ/Large/branch-range-07.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/SystemZ/Large/branch-range-07.py b/llvm/test/CodeGen/SystemZ/Large/branch-range-07.py index 90c442092e8..f1c8ea0328b 100644 --- a/llvm/test/CodeGen/SystemZ/Large/branch-range-07.py +++ b/llvm/test/CodeGen/SystemZ/Large/branch-range-07.py @@ -40,7 +40,7 @@ print 'entry:' for i in xrange(branch_blocks - 1, -1, -1): print ' %%countptr%d = getelementptr i32 *%%counts, i64 %d' % (i, i) - print ' %%initcount%d = load i32 *%%countptr%d' % (i, i) + print ' %%initcount%d = load i32 , i32 *%%countptr%d' % (i, i) print ' br label %%loop%d' % i print 'loop%d:' % i |