File tree 2 files changed +8
-6
lines changed
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -209,12 +209,6 @@ func (p platform) vet() {
209
209
return
210
210
}
211
211
212
- if p .os == "aix" && p .arch == "ppc64" {
213
- // TODO(aix): enable as soon as the aix/ppc64 port has fully landed
214
- fmt .Println ("skipping aix/ppc64" )
215
- return
216
- }
217
-
218
212
var buf bytes.Buffer
219
213
fmt .Fprintf (& buf , "go run main.go -p %s\n " , p )
220
214
Original file line number Diff line number Diff line change
1
+ // aix/ppc64-specific vet whitelist. See readme.txt for details.
2
+
3
+ runtime/asm_ppc64x.s: [ppc64] sigreturn: function sigreturn missing Go declaration
4
+ runtime/sys_aix_ppc64.s: [ppc64] callCfunction: function callCfunction missing Go declaration
5
+ runtime/sys_aix_ppc64.s: [ppc64] _asmsyscall6: function _asmsyscall6 missing Go declaration
6
+ runtime/sys_aix_ppc64.s: [ppc64] _sigtramp: function _sigtramp missing Go declaration
7
+ runtime/sys_aix_ppc64.s: [ppc64] _sigtramp: use of 16(R1) points beyond argument frame
8
+ runtime/sys_aix_ppc64.s: [ppc64] _tstart: function _tstart missing Go declaration
You can’t perform that action at this time.
0 commit comments