My app works fine on win7, but not on win10.
movaps needs 16bytes alignment. Is it ntdll.dll bug?
MOVAPS fails, after upgrading to win10.
Re: MOVAPS fails, after upgrading to win10.
Then it is time to upgrade your application as well. You can start by fixing your messed up stack alignment.
- Kazinsal
- Member
- Posts: 559
- Joined: Wed Jul 13, 2011 7:38 pm
- Libera.chat IRC: Kazinsal
- Location: Vancouver
- Contact:
Re: MOVAPS fails, after upgrading to win10.
Yeah, this isn't Windows 10, this is your code being so against the ABI I'm surprised it didn't break earlier.
Re: MOVAPS fails, after upgrading to win10.
Bug fixed, many Thank!
The stack has to be aligned before calling any windows functions.
The stack has to be aligned before calling any windows functions.
Re: MOVAPS fails, after upgrading to win10.
What's the best instruction sequence to make an offset aligned(16)?