From c11203b401f76ec3a7e02b24c93fcf9fee343b26 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Mon, 9 Mar 2009 12:31:41 -0600 Subject: [PATCH] pass srcSelectSize instead of srcSize to Architecture::plan in appendMove --- src/compiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler.cpp b/src/compiler.cpp index dec484bc73..87a646b924 100644 --- a/src/compiler.cpp +++ b/src/compiler.cpp @@ -2705,7 +2705,7 @@ appendMove(Context* c, BinaryOperation type, unsigned srcSize, uint8_t dstTypeMask; uint64_t dstRegisterMask; - c->arch->plan(type, srcSize, &srcTypeMask, &srcRegisterMask, + c->arch->plan(type, srcSelectSize, &srcTypeMask, &srcRegisterMask, dstSize, &dstTypeMask, &dstRegisterMask, &thunk);