From 157a968372329e33353d04d6d23db8117c38b0ad Mon Sep 17 00:00:00 2001 From: nemerle Date: Fri, 22 Apr 2016 10:34:36 +0200 Subject: [PATCH] Assume TYPE_STR is returned in exactly the same way as TYPE_PTR is --- src/chklib.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/chklib.cpp b/src/chklib.cpp index aa396c6..5abdc77 100644 --- a/src/chklib.cpp +++ b/src/chklib.cpp @@ -502,6 +502,7 @@ bool LibCheck(Function & pProc) case TYPE_BYTE_SIGN: case TYPE_BYTE_UNSIGN: pProc.liveOut.setReg(rAL); break; + case TYPE_STR: case TYPE_PTR: fprintf(stderr,"Warning assuming Large memory model\n"); pProc.liveOut.setReg(rAX).addReg(rDS);