Bug 4960 - unused but set variables
Status: RESOLVED FIXED
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Misc
Version: GIT MASTER
Hardware: PC Linux
: P3 minor
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2011-04-26 14:39 EDT by Ben Millwood
Modified: 2011-05-02 12:01:54 EDT
2 users (show)

See Also:


Attachments
stderr of a release build (25.56 KB, text/plain)
2011-04-26 14:39 EDT, Ben Millwood
i -> latest (920 bytes, patch)
2011-04-26 14:52 EDT, Ben Millwood

Description Ben Millwood 2011-04-26 14:39:52 EDT
Created attachment 2665 [details]
stderr of a release build

I've recently upgraded my GCC and it seems to have a new warning -Wunused-but-set-variable

I promptly compiled ioq3 with it and it vomited a thousand of these everywhere. Attached is the compile log. I realise it's a huge pain to deal with and probably some of the warnings will be spurious, but I bet there's at least some legitimate concerns in there.
Comment 1 Ben Millwood 2011-04-26 14:52:22 EDT
Created attachment 2666 [details]
i -> latest

At least one of the warnings seems to be a genuine bug:

> code/botlib/be_ai_move.c: In function ‘BotResetLastAvoidReach’:
> code/botlib/be_ai_move.c:3512:26: warning: array subscript is above array bounds [-Warray-bounds]

Indeed, in the code in question, i will always be MAX_AVOIDREACH so the index will be out of bounds.

The attached patch makes the code do what I think it meant to do, although not being very familiar with the botlib I'm not completely sure.
Comment 2 cyrri 2011-04-27 18:17:36 EDT
Agreed, the index should be [latest] instead of [i].
Comment 3 Thilo Schulz 2011-05-02 11:57:24 EDT
Would you like to supply a patch that fixes these warnings? No reason to keep these variables included.
In the meantime, I applied the array OOB issue.
Comment 4 Thilo Schulz 2011-05-02 12:01:54 EDT
Closing this bug as I dont have that newest gcc yet. If you have a patch feel free to reopen.