diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-28 22:27:37 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-28 22:27:37 +0000 |
commit | f8eabf2297ba21d268a5c6bf3889e73aa5944904 (patch) | |
tree | 118d1aacc6e089248cbea2cec68c60f448af81dc /gcc/value-prof.c | |
parent | 162719b305a713b80afc9df7016f5dfc8d095515 (diff) | |
download | gcc-f8eabf2297ba21d268a5c6bf3889e73aa5944904.tar.gz |
* builtins.c (expand_builtin_memset): Fix typo in my last patch.
* value-prof.c (stringop_block_profile): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121272 138bc75d-0d04-0410-961f-82ee72b054a4
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; |