diff options
author | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-02-23 14:14:54 +0900 |
---|---|---|
committer | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-02-23 14:14:54 +0900 |
commit | e8de5c70e3370e9112a5facc870075eea60c4c46 (patch) | |
tree | 02886c2ff477e3bcca66d4541a3e0777f5406aae /src/gallium/auxiliary/tgsi/exec | |
parent | bed547cb8223659a7f0d15a91c2edb5f822ba855 (diff) |
Bring in several forgotten MSVC fixes.
Diffstat (limited to 'src/gallium/auxiliary/tgsi/exec')
-rw-r--r-- | src/gallium/auxiliary/tgsi/exec/tgsi_exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/exec/tgsi_exec.c b/src/gallium/auxiliary/tgsi/exec/tgsi_exec.c index d7b18dc9c5..ac52441400 100644 --- a/src/gallium/auxiliary/tgsi/exec/tgsi_exec.c +++ b/src/gallium/auxiliary/tgsi/exec/tgsi_exec.c @@ -2455,7 +2455,7 @@ tgsi_exec_machine_run( struct tgsi_exec_machine *mach ) /* execute instructions, until pc is set to -1 */ while (pc != -1) { - assert(pc < mach->NumInstructions); + assert(pc < (int) mach->NumInstructions); exec_instruction( mach, mach->Instructions + pc, &pc ); } |