use common() when possible
This commit is contained in:
parent
a3cbfd56f3
commit
be64cfc96b
@ -34,10 +34,7 @@ arith n, w;
|
|||||||
int i;
|
int i;
|
||||||
{
|
{
|
||||||
if ( i == 0 || w == BSS_INIT) {
|
if ( i == 0 || w == BSS_INIT) {
|
||||||
switchseg( SEGBSS);
|
common(n);
|
||||||
dump_label();
|
|
||||||
|
|
||||||
bss( n);
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
switchseg( SEGCON);
|
switchseg( SEGCON);
|
||||||
|
|||||||
@ -35,10 +35,7 @@ label l;
|
|||||||
int i;
|
int i;
|
||||||
{
|
{
|
||||||
if ( i == 0) {
|
if ( i == 0) {
|
||||||
switchseg( SEGBSS);
|
common(n);
|
||||||
dump_label();
|
|
||||||
|
|
||||||
bss( n);
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
switchseg( SEGCON);
|
switchseg( SEGCON);
|
||||||
|
|||||||
@ -35,10 +35,7 @@ char *s;
|
|||||||
int i;
|
int i;
|
||||||
{
|
{
|
||||||
if ( i == 0) {
|
if ( i == 0) {
|
||||||
switchseg( SEGBSS);
|
common( n);
|
||||||
dump_label();
|
|
||||||
|
|
||||||
bss( n);
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
switchseg( SEGCON);
|
switchseg( SEGCON);
|
||||||
|
|||||||
@ -35,10 +35,7 @@ label l;
|
|||||||
int i;
|
int i;
|
||||||
{
|
{
|
||||||
if ( i == 0) {
|
if ( i == 0) {
|
||||||
switchseg( SEGBSS);
|
common( n);
|
||||||
dump_label();
|
|
||||||
|
|
||||||
bss( n);
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
switchseg( SEGCON);
|
switchseg( SEGCON);
|
||||||
|
|||||||
@ -35,10 +35,7 @@ char *s;
|
|||||||
int i;
|
int i;
|
||||||
{
|
{
|
||||||
if ( i == 0) {
|
if ( i == 0) {
|
||||||
switchseg( SEGBSS);
|
common( n);
|
||||||
dump_label();
|
|
||||||
|
|
||||||
bss( n);
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
switchseg( SEGCON);
|
switchseg( SEGCON);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user