Commit 4724d87a by Richard Stallman

*** empty log message ***

From-SVN: r1229
parent 52b6a22f
...@@ -394,6 +394,18 @@ make_decl_rtl (decl, asmspec, top_level) ...@@ -394,6 +394,18 @@ make_decl_rtl (decl, asmspec, top_level)
} }
} }
} }
/* Make the rtl for variable VAR be volatile.
Use this only for static variables. */
make_var_volatile (var)
tree var;
{
if (GET_CODE (DECL_RTL (var)) != MEM)
abort ();
MEM_VOLATILE_P (DECL_RTL (var)) = 1;
}
/* Output a string of literal assembler code /* Output a string of literal assembler code
for an `asm' keyword used between functions. */ for an `asm' keyword used between functions. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment