diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2018-07-31 17:06:35 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-07-31 18:38:54 +0200 |
| commit | 46b824df22f651bed68754a355c7856416c1e172 (patch) | |
| tree | 69b4c268961d306479eaf920712066d456cd1e65 /prog/rand.go | |
| parent | 8d7727990b4ff69c3959e49fa21299d4f93be50a (diff) | |
prog: refactor SerializeForExec
Reduce cyclomatic complexity.
Update #538
Diffstat (limited to 'prog/rand.go')
| -rw-r--r-- | prog/rand.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prog/rand.go b/prog/rand.go index a1b83d11a..721bbed00 100644 --- a/prog/rand.go +++ b/prog/rand.go @@ -684,6 +684,6 @@ func (a *LenType) generate(r *randGen, s *state) (arg Arg, calls []*Call) { } func (a *CsumType) generate(r *randGen, s *state) (arg Arg, calls []*Call) { - // Updated later in calcChecksumsCall. + // Filled at runtime by executor. return MakeConstArg(a, 0), nil } |
