Files
ispc/tests_errors/global-redef-1.ispc
Matt Pharr 5b2d43f665 Fix global variable code to correctly handle extern declarations.
When we have an "extern" global, now we no longer inadvertently define
storage for it.  Further, we now successfully do define storage when we
encounter a definition following one or more extern declarations.

Issues #215 and #217.
2012-03-28 14:15:49 -07:00

5 lines
82 B
Plaintext

// Definition of variable "foo" conflicts with definition at
int foo;
float foo;