summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>2011-07-05 14:50:13 +0000
committerspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>2011-07-05 14:50:13 +0000
commit451d3b40df87ca29ed5369dd922c52fdfbed8fff (patch)
treefbcb5c7fa115b934617ff3da18819efb41146462
parent981e6961d4c750db37194d196e1b19f1aadbc541 (diff)
downloadgcc-451d3b40df87ca29ed5369dd922c52fdfbed8fff.tar.gz
Correct typo.
* graphite-clast-to-gimple.c (clast_name_to_index): Add missing space. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@175858 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/graphite-clast-to-gimple.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 16d8d58ae81..3539ecdae26 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2011-07-05 Sebastian Pop <sebastian.pop@amd.com>
+
+ * graphite-clast-to-gimple.c (clast_name_to_index): Add missing space.
+
2011-07-05 Richard Guenther <rguenther@suse.de>
* c-decl.c (c_init_decl_processing): Defer building common
diff --git a/gcc/graphite-clast-to-gimple.c b/gcc/graphite-clast-to-gimple.c
index c8356d34a63..4a4c3d20718 100644
--- a/gcc/graphite-clast-to-gimple.c
+++ b/gcc/graphite-clast-to-gimple.c
@@ -88,7 +88,7 @@ clast_name_to_index (clast_name_p name, htab_t index_table)
#ifdef CLOOG_ORG
gcc_assert (name->type == clast_expr_name);
- tmp.name = ((const struct clast_name*) name)->name;
+ tmp.name = ((const struct clast_name *) name)->name;
#else
tmp.name = name;
#endif