diff options
-rw-r--r-- | llvm/test/CodeGen/SystemZ/Large/spill-02.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/SystemZ/Large/spill-02.py b/llvm/test/CodeGen/SystemZ/Large/spill-02.py index f8359932efb..0fefe639c5d 100644 --- a/llvm/test/CodeGen/SystemZ/Large/spill-02.py +++ b/llvm/test/CodeGen/SystemZ/Large/spill-02.py @@ -22,7 +22,7 @@ from __future__ import print_function -args = (8168 - 160) / 8 + (5 - 1) +args = int((8168 - 160) / 8 + (5 - 1)) print('declare i64 *@foo(i64 *%s)' % (', i64' * args)) print('declare void @bar(i64 *)') |