diff options
author | Jan Hubicka <jh@suse.cz> | 2007-01-28 23:27:37 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2007-01-28 22:27:37 +0000 |
commit | 52ca6d3504b78e472b922b525dd4294fbc95ea8d (patch) | |
tree | 118d1aacc6e089248cbea2cec68c60f448af81dc /gcc/value-prof.c | |
parent | 079a182e02a0720f9ac230c212fd202df3e6bd9e (diff) | |
download | gcc-52ca6d3504b78e472b922b525dd4294fbc95ea8d.tar.gz |
builtins.c (expand_builtin_memset): Fix typo in my last patch.
* builtins.c (expand_builtin_memset): Fix typo in my last patch.
* value-prof.c (stringop_block_profile): Likewise.
From-SVN: r121272
Diffstat (limited to 'gcc/value-prof.c')
-rw-r--r-- | gcc/value-prof.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/value-prof.c b/gcc/value-prof.c index 4734355d816..869e1693ac4 100644 --- a/gcc/value-prof.c +++ b/gcc/value-prof.c @@ -1449,7 +1449,7 @@ stringop_block_profile (tree stmt, unsigned int *expected_align, } histogram = gimple_histogram_value_of_type (cfun, stmt, HIST_TYPE_IOR); if (!histogram) - *expected_size = -1; + *expected_align = 0; else { gcov_type count; |