forked from OSchip/llvm-project
[asan] Tweak gen_dynamic_list.py to work with both Py2 and Py3.
llvm-svn: 249051
This commit is contained in:
parent
03c48b01bf
commit
74697714c2
|
@ -100,7 +100,7 @@ def main(argv):
|
||||||
print('global:')
|
print('global:')
|
||||||
result.sort()
|
result.sort()
|
||||||
for f in result:
|
for f in result:
|
||||||
print(' ' + f.encode('utf-8') + ';')
|
print(u' %s;' % f)
|
||||||
if args.version_list:
|
if args.version_list:
|
||||||
print('local:')
|
print('local:')
|
||||||
print(' *;')
|
print(' *;')
|
||||||
|
|
Loading…
Reference in New Issue