]> sourceware.org Git - cgen.git/commitdiff
Initialise value to zero to avoid a compile time warning.
authorNick Clifton <nickc@redhat.com>
Mon, 4 Apr 2005 10:09:54 +0000 (10:09 +0000)
committerNick Clifton <nickc@redhat.com>
Mon, 4 Apr 2005 10:09:54 +0000 (10:09 +0000)
ChangeLog
opcodes.scm

index 0c2431e6cbcfb2492203d6cb2745949e35370af4..7be56bd87339c3edfbf3337ae708be621de36f97 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-04-04  Nick Clifton  <nickc@redhat.com>
+
+       * opcodes.scm (-gen-parse-address): Initialise value to zero to
+       avoid a compile time warning.
+
 2005-03-18  Nick Clifton  <nickc@redhat.com>
 
        * cpu/ip2k.opc (parse_lit8): Change wording of error message to
index 24c5e74f5b04e7d63ac1083e1c679f1da551f000..0073ae1770a4ea099eee21eace4b7d9f73f320f4 100644 (file)
 (define (-gen-parse-address parse-fn op-enum result-var-name)
   (string-append
    "      {\n"
-   "        bfd_vma value;\n"
+   "        bfd_vma value = 0;\n"
    "        errmsg = "
    ; Use operand's special parse function if there is one.
    (or parse-fn
This page took 0.034308 seconds and 5 git commands to generate.