There was an error while loading. Please reload this page.
//go:build
// +build
1 parent 329ed4b commit 78b9a58Copy full SHA for 78b9a58
1 file changed
asm2asm.py
@@ -2494,15 +2494,15 @@ def main():
2494
2495
# convert the original sources
2496
if OUTPUT_RAW:
2497
- asm.out.append('// +build amd64')
+ asm.out.append('//go:build amd64')
2498
asm.out.append('// Code generated by asm2asm, DO NOT EDIT.')
2499
asm.out.append('')
2500
asm.out.append('package %s' % pkg)
2501
2502
## native text
2503
asm.out.append('var Text%s = []byte{' % STUB_NAME)
2504
else:
2505
- asm.out.append('// +build !noasm !appengine')
+ asm.out.append('//go:build !noasm !appengine')
2506
2507
2508
asm.out.append('#include "go_asm.h"')
0 commit comments