gcc 4.1 claims that mem_data might be used uninitialized,
though I don't believe that's true. Placate it anyway. --HG-- extra : convert_revision : dcd9427af14f0e7a33510054bee4ecbe73e050be
This commit is contained in:
parent
b5037ad82b
commit
69d259b6ae
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ def template SwapExecute {{
|
|||
Addr EA;
|
||||
%(fp_enable_check)s;
|
||||
%(op_decl)s;
|
||||
uint64_t mem_data;
|
||||
uint64_t mem_data = 0;
|
||||
|
||||
%(op_rd)s;
|
||||
%(ea_code)s;
|
||||
|
|
Loading…
Reference in a new issue