Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inhibited wrong occurrence of ad-hoc encoding of 64bit doubles on iOS #270

Merged
merged 1 commit into from Apr 20, 2015

Conversation

makeroo
Copy link

@makeroo makeroo commented Apr 16, 2015

No description provided.

@redboltz
Copy link
Contributor

@makeroo, thank you for sending the PR.
Let me clarify the situation.

  • arm is defined and ARM_EABI is NOT defined on iOS.
  • However, iOS is NOT an oabi.
  • Hence, mem.i = (mem.i & 0xFFFFFFFFUL) << 32UL | (mem.i >> 32UL); is bad for iOS.
  • To distinguish iOS, we can use TARGET_OS_IPHONE.

Is that correct? if it is, I will merge the PR soon.

@makeroo
Copy link
Author

makeroo commented Apr 20, 2015

On Mon, Apr 20, 2015 at 7:44 AM, Takatoshi Kondo notifications@github.com
wrote:

@makeroo https://github.com/makeroo, thank you for sending the PR.
Let me clarify the situation.

  • arm is defined and ARM_EABI is NOT defined on iOS.

correct

  • However, iOS is NOT an oabi.

    I'm not sure but I think so

    • Hence, mem.i = (mem.i & 0xFFFFFFFFUL) << 32UL | (mem.i >> 32UL); is
      bad for iOS.

correct

  • To distinguish iOS, we can use TARGET_OS_IPHONE.

correct

Is that correct? if it is, I will merge the PR soon.

thanks


Reply to this email directly or view it on GitHub
#270 (comment).

redboltz added a commit that referenced this pull request Apr 20, 2015
Inhibited wrong occurrence of ad-hoc encoding of 64bit doubles on iOS
@redboltz redboltz merged commit 2919033 into msgpack:master Apr 20, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants