Remove some compile warnings.

This commit is contained in:
Cary R 2014-10-13 16:30:42 -07:00
parent 3fd622e4eb
commit f36bebf0e1
2 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2012 Stephen Williams (steve@icarus.com)
* Copyright (c) 2012-2014 Stephen Williams (steve@icarus.com)
*
* This source code is free software; you can redistribute it
* and/or modify it in source code form under the terms of the GNU
@ -50,10 +50,10 @@ bool netclass_t::set_property(perm_string pname, property_qualifier_t qual, ivl_
return true;
}
void netclass_t::set_class_scope(NetScope*class_scope)
void netclass_t::set_class_scope(NetScope*class_scope__)
{
assert(class_scope_ == 0);
class_scope_ = class_scope;
class_scope_ = class_scope__;
}
void netclass_t::set_definition_scope(NetScope*use_definition_scope)

View File

@ -5581,7 +5581,7 @@ bool of_STORE_PROP_V(vthread_t thr, vvp_code_t cp)
/*
* %store/qb/r <var-label>
*/
bool of_STORE_QB_R(vthread_t thr, vvp_code_t cp)
bool of_STORE_QB_R(vthread_t, vvp_code_t)
{
fprintf(stderr, "XXXX %%store/qb/r NOT IMPLEMENTED\n");
return true;
@ -5617,7 +5617,7 @@ bool of_STORE_QB_STR(vthread_t thr, vvp_code_t cp)
/*
* %store/qf/r <var-label>
*/
bool of_STORE_QF_R(vthread_t thr, vvp_code_t cp)
bool of_STORE_QF_R(vthread_t, vvp_code_t)
{
fprintf(stderr, "XXXX %%store/qf/r NOT IMPLEMENTED\n");
return true;
@ -5626,7 +5626,7 @@ bool of_STORE_QF_R(vthread_t thr, vvp_code_t cp)
/*
* %store/qf/str <var-label>
*/
bool of_STORE_QF_STR(vthread_t thr, vvp_code_t cp)
bool of_STORE_QF_STR(vthread_t, vvp_code_t)
{
fprintf(stderr, "XXXX %%store/qf/str NOT IMPLEMENTED\n");
return true;