forked from OSchip/llvm-project
MC, COFF: Make bigobj test compatible with python3
No functionality change intended. llvm-svn: 219739
This commit is contained in:
parent
a798e9ffdf
commit
3416b48980
|
@ -18,9 +18,9 @@ num_sections = 65277
|
|||
# CHECK-NEXT: ]
|
||||
# CHECK-NEXT: }
|
||||
|
||||
for i in xrange(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))
|
||||
|
|
Loading…
Reference in New Issue