aboutsummaryrefslogtreecommitdiff
path: root/arm-gen.c
diff options
context:
space:
mode:
authorVincent Lefevre <vincent@vinc17.net>2014-04-07 13:31:00 +0200
committerVincent Lefevre <vincent@vinc17.net>2014-04-07 13:31:00 +0200
commit3e9a7e9d69e3adb0e9ed65d11caf415e74458fe9 (patch)
tree9cb8986b31d58cd7ba2eb8e28a437cd7fa33b838 /arm-gen.c
parentd09a46d655f18e88b848e95ddf7fed7ac20bfc36 (diff)
downloadtinycc-3e9a7e9d69e3adb0e9ed65d11caf415e74458fe9.tar.gz
tinycc-3e9a7e9d69e3adb0e9ed65d11caf415e74458fe9.tar.bz2
Corrected spelling mistakes in comments and strings
Diffstat (limited to 'arm-gen.c')
-rw-r--r--arm-gen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arm-gen.c b/arm-gen.c
index a9c05fe..680a490 100644
--- a/arm-gen.c
+++ b/arm-gen.c
@@ -943,7 +943,7 @@ struct plan {
Returns the amount of stack space needed for parameter passing
Note: this function allocated an array in plan->pplans with tcc_malloc. It
- is the responsability of the caller to free this array once used (ie not
+ is the responsibility of the caller to free this array once used (ie not
before copy_params). */
static int assign_regs(int nb_args, int float_abi, struct plan *plan, int *todo)
{
@@ -1860,7 +1860,7 @@ void gen_opf(int op)
case TOK_UGE:
case TOK_ULE:
case TOK_UGT:
- tcc_error("unsigned comparision on floats?");
+ tcc_error("unsigned comparison on floats?");
break;
case TOK_LT:
op=TOK_Nset;