Closed
Bug 956161
Opened 11 years ago
Closed 11 years ago
js/src/jit/AsmJS.cpp: [-Wuninitialized] 'floatCallee' may be used uninitialized in this function
Categories
(Core :: JavaScript Engine: JIT, defect)
Tracking
()
RESOLVED
FIXED
mozilla29
People
(Reporter: cpeterson, Assigned: cpeterson)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
11 years ago
1.83 KB,
patch
|
luke
:
review+
|
Details | Diff | Splinter Review |
This warning is Firefox for Android's last -Wuninitialized warning! :) Most of gcc's false positives are now reported as -Wmaybe-uninitialied warnings.
However, this warning is actually a false positive. gcc can't figure out the variable is initialized even though the switch statement handles every AsmJSMathBuiltin enum value.
Assignee | ||
Updated•11 years ago
|
Attachment #8355359 -
Flags: review?(luke)
Updated•11 years ago
|
Attachment #8355359 -
Flags: review?(luke) → review+
Assignee | ||
Comment 1•11 years ago
|
||
Comment 2•11 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla29
You need to log in
before you can comment on or make changes to this bug.
Description
•