about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--time/tzset.c1
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 56ef82760d..240b3e81aa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2017-03-03  Florian Weimer  <fweimer@redhat.com>
+
+	* time/tzset.c (compute_offset): Remove __attribute_noinline__.
+
 2017-03-02  Florian Weimer  <fweimer@redhat.com>
 
 	* elf/get-dynamic-info.h: Remove header file inclusion guard.
diff --git a/time/tzset.c b/time/tzset.c
index eb420699c4..404f1db370 100644
--- a/time/tzset.c
+++ b/time/tzset.c
@@ -168,7 +168,6 @@ update_vars (void)
 
 
 static unsigned int
-__attribute_noinline__
 compute_offset (unsigned int ss, unsigned int mm, unsigned int hh)
 {
   return min (ss, 59) + min (mm, 59) * 60 + min (hh, 24) * 60 * 60;