aboutsummaryrefslogtreecommitdiffstats
path: root/executor/syscalls.h
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2019-12-21 14:51:54 +0100
committerDmitry Vyukov <dvyukov@google.com>2019-12-21 14:53:37 +0100
commitbfdfc2603c187447d32ecbc8b5a378df53af5734 (patch)
treecff7440626d57bf7453634c4de4f8e89fc8fc4a6 /executor/syscalls.h
parentbc5869180f69e2ad6c6b823e129e08a8e523d800 (diff)
prog: don't fail decoding on non-default out args
We get them in cross-compilation test where an out const arg has different values in different archs. No reason to fail deserialization in that case, replace with default arg instead.
Diffstat (limited to 'executor/syscalls.h')
-rw-r--r--executor/syscalls.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/executor/syscalls.h b/executor/syscalls.h
index 3cb15892a..29ca28644 100644
--- a/executor/syscalls.h
+++ b/executor/syscalls.h
@@ -20713,6 +20713,7 @@ const call_t syscalls[] = {
{"test$opt1", 0},
{"test$opt2", 0},
{"test$opt3", 0},
+ {"test$out_const", 0},
{"test$recur0", 0},
{"test$recur1", 0},
{"test$recur2", 0},