mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-26 22:45:05 +00:00
MC, COFF: Make bigobj test compatible with python3
No functionality change intended. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219739 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
84a3feea38
commit
3a1045d8db
@ -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…
x
Reference in New Issue
Block a user