commit 60e2f95ebabb259c85515101a52aca843490fbc2
Author:     Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Fri Jan 29 10:26:26 2016 +0100
Commit:     Roberto E. Vargas Caballero <[email protected]>
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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -39,7 +39,7 @@ main(void)
        while (moreinput()) {
                parse();
                optimize();
-               addable();
+               addressability();
                generate();
                peephole();
                writeout();

Reply via email to