From 1e09d98b23c8ab7d9467cbb2251776cb8eed7fd6 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 21 Oct 2016 07:40:48 +0000 Subject: dir.c: inline to_be_ignored * dir.c (to_be_ignored): make an inline function to get rid of multiple errno function calls. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56465 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- dir.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dir.c b/dir.c index 737470c4bc..92b795fbf5 100644 --- a/dir.c +++ b/dir.c @@ -1233,7 +1233,12 @@ sys_enc_warning_in(const char *func, const char *mesg, rb_encoding *enc) * ENOTDIR can be returned by stat(2) if a non-leaf element of the path * is not a directory. */ -#define to_be_ignored(e) ((e) == ENOENT || (e) == ENOTDIR) +ALWAYS_INLINE(static inline int to_be_ignored(int e)); +static inline int +to_be_ignored(int e) +{ + return e == ENOENT || e == ENOTDIR; +} #ifdef _WIN32 #define STAT(p, s) rb_w32_ustati64((p), (s)) -- cgit v1.2.3