aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/ifuzz/generated/empty.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/ifuzz: reorganize files to allow other architecturesAlexey Kardashevskiy2020-11-201-6/+0
| | | | | | | | | | | | | | | | | | At the moment ifuzz only generates x86 instructions. In order to support instruction fuzzing for others (ARM, POWERPC), some separation of the common and arch layers is needed. This adds 2 packages: 1. "x86" where x86 instruction generator goes to 2. "ifuzzimpl which contains some common code. The goal was to keep changes to the rand.go to the minimum. The next patch will use this when adding PPC64. This should cause no behavioural change. Signed-off-by: Alexey Kardashevskiy <aik@linux.ibm.com>
* .golangci.yml: add codeanalysis build tagDmitry Vyukov2019-05-151-0/+6
Using a build tag to exclude files for golangci-lint reduces memory consumption (it does not parse them). The naive attempt with skip-dirs did not work. So add codeanalysis build tag and use it in auto-generated files. Update #977