diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-04-23 10:49:48 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-04-23 10:49:48 +0000 |
commit | b3fba3cd910887e6f0a93df245c37cd654df3635 (patch) | |
tree | 915ca394374373a095612e1445e1f45154f3d0a5 /gcc/rtl.c | |
parent | 3ac3d9055e4c68394d4c0e134a64449f170fd3cf (diff) | |
download | gcc-b3fba3cd910887e6f0a93df245c37cd654df3635.tar.gz |
Formatting and typo fixes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/wide-int@209691 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c index e49a97758c0..d241c83885b 100644 --- a/gcc/rtl.c +++ b/gcc/rtl.c @@ -232,7 +232,7 @@ cwi_output_hex (FILE *outfile, const_rtx x) { int i = CWI_GET_NUM_ELEM (x); gcc_assert (i > 0); - if (CWI_ELT (x, i-1) == 0) + if (CWI_ELT (x, i - 1) == 0) /* The HOST_WIDE_INT_PRINT_HEX prepends a 0x only if the val is non zero. We want all numbers to have a 0x prefix. */ fprintf (outfile, "0x"); |