summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath <[email protected]>2009-02-15 15:01:03 -0800
committerRoland McGrath <[email protected]>2009-02-15 15:01:03 -0800
commit7ee70eb081efbf86ed272ecc60e36c73e8e009f3 (patch)
treec6bc234959c4f5c26355e349449e747f94a3eeaf
parent4d6d0f757aae4a17b6e23afe9c74d0b935d46e9d (diff)
Fix last commit.
-rw-r--r--backends/ppc_attrs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/ppc_attrs.c b/backends/ppc_attrs.c
index 7320f264..985df3f9 100644
--- a/backends/ppc_attrs.c
+++ b/backends/ppc_attrs.c
@@ -69,12 +69,12 @@ ppc_check_object_attribute (ebl, vendor, tag, value, tag_name, value_name)
case 12:
*tag_name = "GNU_Power_ABI_Struct_Return";
- static const char *vector_kinds[] =
+ static const char *struct_return_kinds[] =
{
"Any", "r3/r4", "Memory"
};
- if (value < sizeof vector_kinds / sizeof vector_kinds[0])
- *value_name = vector_kinds[value];
+ if (value < sizeof struct_return_kinds / sizeof struct_return_kinds[0])
+ *value_name = struct_return_kinds[value];
return true;
}