[hackers] [scc] [cc2] Change addable() to addresability() || Roberto E. Vargas Caballero
commit 60e2f95ebabb259c85515101a52aca843490fbc2
Author: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
AuthorDate: Fri Jan 29 10:26:26 2016 +0100
Commit: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
CommitDate: Fri Jan 29 10:26:26 2016 +0100
[cc2] Change addable() to addresability()
Addable was to criptic and although addressability is too long, in this
case I think is better to be a bit verbose.
diff --git a/cc2/arch/amd64-sysv/cgen.c b/cc2/arch/amd64-sysv/cgen.c
index 6b96df7..1101f84 100644
--- a/cc2/arch/amd64-sysv/cgen.c
+++ b/cc2/arch/amd64-sysv/cgen.c
_AT_@ -8,6 +8,6 @@ generate(void)
}
void
-addable(void)
+addressability(void)
{
}
diff --git a/cc2/arch/i386-sysv/cgen.c b/cc2/arch/i386-sysv/cgen.c
index 6b96df7..1101f84 100644
--- a/cc2/arch/i386-sysv/cgen.c
+++ b/cc2/arch/i386-sysv/cgen.c
_AT_@ -8,6 +8,6 @@ generate(void)
}
void
-addable(void)
+addressability(void)
{
}
diff --git a/cc2/arch/z80/cgen.c b/cc2/arch/z80/cgen.c
index 6b96df7..1101f84 100644
--- a/cc2/arch/z80/cgen.c
+++ b/cc2/arch/z80/cgen.c
_AT_@ -8,6 +8,6 @@ generate(void)
}
void
-addable(void)
+addressability(void)
{
}
diff --git a/cc2/cc2.h b/cc2/cc2.h
index a8a6415..c71049a 100644
--- a/cc2/cc2.h
+++ b/cc2/cc2.h
_AT_@ -155,7 +155,7 @@ extern void parse(void);
extern void optimize(void);
/* cgen.c */
-extern void addable(void);
+extern void addressability(void);
extern void generate(void);
/* peep.c */
diff --git a/cc2/main.c b/cc2/main.c
index 1dcaf6a..fc4500d 100644
--- a/cc2/main.c
+++ b/cc2/main.c
_AT_@ -39,7 +39,7 @@ main(void)
while (moreinput()) {
parse();
optimize();
- addable();
+ addressability();
generate();
peephole();
writeout();
Received on Fri Jan 29 2016 - 11:38:53 CET
This archive was generated by hypermail 2.3.0
: Fri Jan 29 2016 - 11:48:19 CET