Skip to content

Commit 2a34ea9

Browse files
committed
Fix build tags
1 parent 0e98d1d commit 2a34ea9

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

huff0/decompress_amd64.s

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// +build !appengine
2+
// +build gc
3+
// +build !noasm
4+
15
#include "textflag.h"
26
#include "funcdata.h"
37
#include "go_asm.h"

huff0/decompress_amd64.s.in

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// +build !appengine
2+
// +build gc
3+
// +build !noasm
4+
15
#include "textflag.h"
26
#include "funcdata.h"
37
#include "go_asm.h"

huff0/decompress_generic.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//go:build noasm
2-
// +build noasm
1+
//go:build !amd64 || appengine || !gc || noasm
2+
// +build !amd64 appengine !gc noasm
33

44
// This file contains a generic implementation of Decoder.Decompress4X.
55
package huff0

0 commit comments

Comments
 (0)