This is an archive of the discontinued LLVM Phabricator instance.

[builtins] Fix unprototypes function declaration
ClosedPublic

Authored by aykevl on Apr 15 2020, 6:43 AM.

Details

Summary

The following declarations were missing a prototype:

FE_ROUND_MODE __fe_getround();
int __fe_raise_inexact();

Discovered while fixing a bug in Clang related to unprototyped function calls (D78125).

Diff Detail

Event Timeline

aykevl created this revision.Apr 15 2020, 6:43 AM
Herald added a project: Restricted Project. · View Herald TranscriptApr 15 2020, 6:43 AM
Herald added a subscriber: Restricted Project. · View Herald Transcript
joerg accepted this revision.Apr 15 2020, 7:30 AM

LGTM

This revision is now accepted and ready to land.Apr 15 2020, 7:30 AM
MaskRay accepted this revision.Apr 15 2020, 7:43 AM

LGTM.

This revision was automatically updated to reflect the committed changes.