summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2023-04-10 17:36:03 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-04-10 18:18:48 +0300
commit1edcce3775d163bc47a8f83a57ede2395174abc6 (patch)
treef1e2047cada7ed7c264afc2fd7995c6bf760f9bb
parentcaf65250385252e0bf6f71f8a0a6d6a48117d45a (diff)
downloadorc-1edcce3775d163bc47a8f83a57ede2395174abc6.tar.gz
orcrules-neon: Fix 64-bit loadupdb of size 16
It would otherwise be unhandled and result in an error although the code for it exists. CID 1523164 Part-of: <https://gitlab.freedesktop.org/gstreamer/orc/-/merge_requests/94>
-rw-r--r--orc/orcrules-neon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/orc/orcrules-neon.c b/orc/orcrules-neon.c
index 570199e..4a1769e 100644
--- a/orc/orcrules-neon.c
+++ b/orc/orcrules-neon.c
@@ -1102,7 +1102,7 @@ neon_rule_loadupdb (OrcCompiler *compiler, void *user, OrcInstruction *insn)
int opcode, flag;
- if (size > 16) {
+ if (size >= 16) {
/** load multiple single-element structures to one, two, three, or four registers */
char vt_str[64];