Closed
Bug 772210
Opened 13 years ago
Closed 13 years ago
Fix warning: unused variable 'initFlushCount'
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
mozilla16
Tracking | Status | |
---|---|---|
firefox16 | --- | fixed |
People
(Reporter: cpeterson, Assigned: cpeterson)
Details
Attachments
(1 file)
1.36 KB,
patch
|
luke
:
review+
|
Details | Diff | Splinter Review |
When building for Android/JS_CPU_ARM, I see many instances of the following compiler warning because BaseAssembler.h is #included in many other files:
mozilla/inbound/js/src/methodjit/BaseAssembler.h: In member function 'JSC::AbstractMacroAssembler<JSC::ARMAssembler>::Call js::mjit::Assembler::callWithABI(void*, bool)':
mozilla/inbound/js/src/methodjit/BaseAssembler.h:563: warning: unused variable 'initFlushCount'
Assignee | ||
Updated•13 years ago
|
Assignee: general → cpeterson
Severity: normal → minor
Status: NEW → ASSIGNED
status-firefox16:
--- → affected
Summary: Fix debug warning: unused variable 'initFlushCount' → Fix warning: unused variable 'initFlushCount'
Assignee | ||
Comment 1•13 years ago
|
||
Fix warning: unused variable 'initFlushCount' by using DebugOnly<int>. This code only affects #ifdef JS_CPU_ARM builds.
Attachment #640350 -
Flags: review?(luke)
![]() |
||
Updated•13 years ago
|
Attachment #640350 -
Flags: review?(luke) → review+
Assignee | ||
Comment 2•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Comment 3•13 years ago
|
||
Don't resolve bugs until they land on m-c.
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Comment 4•13 years ago
|
||
Status: REOPENED → RESOLVED
Closed: 13 years ago → 13 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•