varasm.c (make_decl_rtl): Add the missing `;'.

2004-12-02  H.J. Lu  <hongjiu.lu@intel.com>

	* varasm.c (make_decl_rtl): Add the missing `;'.

From-SVN: r91658
This commit is contained in:
H.J. Lu 2004-12-02 19:56:26 +00:00 committed by H.J. Lu
parent 5c5d79d28c
commit 0267621529
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-12-02 H.J. Lu <hongjiu.lu@intel.com>
* varasm.c (make_decl_rtl): Add the missing `;'.
2004-12-02 Andrew Pinski <pinskia@physics.uc.edu>
* tree.c (is_attribute_p): Split out to ..

View File

@ -962,7 +962,7 @@ make_decl_rtl (tree decl)
#ifdef REGISTER_PREFIX
if (strlen (REGISTER_PREFIX) != 0)
{
reg_number = decode_reg_name (name)
reg_number = decode_reg_name (name);
if (reg_number >= 0 || reg_number == -3)
error ("%Jregister name given for non-register variable %qD", decl, decl);
}