[PATCH] D78205: [builtins] Fix unprototypes function declaration
Ayke via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 15 14:56:13 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rGd9e5691843a9: [builtins] Fix unprototypes function declaration (authored by aykevl).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D78205/new/
https://reviews.llvm.org/D78205
Files:
compiler-rt/lib/builtins/fp_mode.h
Index: compiler-rt/lib/builtins/fp_mode.h
===================================================================
--- compiler-rt/lib/builtins/fp_mode.h
+++ compiler-rt/lib/builtins/fp_mode.h
@@ -23,7 +23,7 @@
FE_TOWARDZERO
} FE_ROUND_MODE;
-FE_ROUND_MODE __fe_getround();
-int __fe_raise_inexact();
+FE_ROUND_MODE __fe_getround(void);
+int __fe_raise_inexact(void);
#endif // FP_MODE_H
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D78205.257862.patch
Type: text/x-patch
Size: 392 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200415/3574c604/attachment.bin>
More information about the llvm-commits
mailing list