This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Can I comment out a GTY variable?
- From: "H. J. Lu" <hjl at lucon dot org>
- To: gcc at gcc dot gnu dot org
- Date: Mon, 18 Apr 2005 11:11:09 -0700
- Subject: Can I comment out a GTY variable?
I am trying to comment out
static GTY (()) int foo = 0;
with
#if 0
static GTY (()) int foo = 0;
#endif
But I got an error saying something like
./gt....h:44: error: foo undeclared here (not in a function)
Is that expected? How can I comment it out?
H.J.