dri/r200: rename __atom to current_atom.

__atom is defined by gcc when the atom compile optimizations are used.
This commit is contained in:
Stéphane Marchesin 2011-06-23 20:53:47 -07:00
parent ad7387fe12
commit 5f691ba36f
1 changed files with 3 additions and 3 deletions

View File

@ -47,9 +47,9 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#define insert_at_tail_if(atom_list, atom) \
do { \
struct radeon_state_atom* __atom = (atom); \
if (__atom->check) \
insert_at_tail((atom_list), __atom); \
struct radeon_state_atom* current_atom = (atom); \
if (current__atom->check) \
insert_at_tail((atom_list), current_atom); \
} while(0)
void r200SetUpAtomList( r200ContextPtr rmesa )