* config/tc-arm.c (make_mapping_symbol): Add braces to avoid empty body
authorAlan Modra <amodra@gmail.com>
Sun, 18 Oct 2009 08:20:17 +0000 (08:20 +0000)
committerAlan Modra <amodra@gmail.com>
Sun, 18 Oct 2009 08:20:17 +0000 (08:20 +0000)
in release builds.

gas/ChangeLog
gas/config/tc-arm.c

index 3531c2159b7f16bb7df395da61a2d1ebd2234451..48ff21e9949086d66f067e3b6d081cc32db21c14 100644 (file)
@@ -1,3 +1,8 @@
+2009-10-18  Matthias Klose  <doko@ubuntu.com>
+
+       * config/tc-arm.c (make_mapping_symbol): Add braces to avoid empty body
+       in release builds.
+
 2009-10-16  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR gas/10775
index 2c70923f29333af265581126d24f10af9c596707..bb30073e5071fd5dc47c6e59f83b0b643b31e958 100644 (file)
@@ -2489,7 +2489,9 @@ make_mapping_symbol (enum mstate state, valueT value, fragS *frag)
       frag->tc_frag_data.first_map = symbolP;
     }
   if (frag->tc_frag_data.last_map != NULL)
-    know (S_GET_VALUE (frag->tc_frag_data.last_map) < S_GET_VALUE (symbolP));
+    {
+      know (S_GET_VALUE (frag->tc_frag_data.last_map) < S_GET_VALUE (symbolP));
+    }
   frag->tc_frag_data.last_map = symbolP;
 }
 
This page took 0.039924 seconds and 4 git commands to generate.