projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a798e9f
)
MC, COFF: Make bigobj test compatible with python3
author
David Majnemer
<david.majnemer@gmail.com>
Tue, 14 Oct 2014 22:35:11 +0000
(22:35 +0000)
committer
David Majnemer
<david.majnemer@gmail.com>
Tue, 14 Oct 2014 22:35:11 +0000
(22:35 +0000)
No functionality change intended.
llvm-svn: 219739
llvm/test/MC/COFF/bigobj.py
patch
|
blob
|
history
diff --git
a/llvm/test/MC/COFF/bigobj.py
b/llvm/test/MC/COFF/bigobj.py
index 6c4061708160d324eb0c0371ec302068870facef..2d610738b9da87e87b13dc3297198c8e1266a3d9 100644
(file)
--- a/
llvm/test/MC/COFF/bigobj.py
+++ b/
llvm/test/MC/COFF/bigobj.py
@@
-18,9
+18,9
@@
num_sections = 65277
# CHECK-NEXT: ]
# CHECK-NEXT: }
-for i in
x
range(0, num_sections):
- print
""" .section .bss,"bw",discard,_b%d
+for i in range(0, num_sections):
+ print
(
""" .section .bss,"bw",discard,_b%d
.globl _b%d # @b%d
_b%d:
.byte 0 # 0x0
-""" % (i, i, i, i)
+""" % (i, i, i, i)
)