diff options
author | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-29 22:41:04 +0000 |
---|---|---|
committer | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-29 22:41:04 +0000 |
commit | 9fd28e01739f4481d4c81b3d721dd61d48f324a6 (patch) | |
tree | 8f162b660efca2f0a954c74272152cd23549444a /gcc/cppexp.c | |
parent | cdaa2f15b8266e3ef6ec0ab5e6966aea38ef0cdd (diff) | |
download | gcc-9fd28e01739f4481d4c81b3d721dd61d48f324a6.tar.gz |
* cpplib.c (_cpp_test_assertion): Default *value to 0.
* cppexp.c (num_part_mul): Initialize result.unsignedp, to 1.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@59648 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cppexp.c')
-rw-r--r-- | gcc/cppexp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/cppexp.c b/gcc/cppexp.c index d4ea2fc1854..7f576f211e4 100644 --- a/gcc/cppexp.c +++ b/gcc/cppexp.c @@ -1446,6 +1446,7 @@ num_part_mul (lhs, rhs) result.high += HIGH_PART (middle[0]); result.high += HIGH_PART (middle[1]); + result.unsignedp = 1; return result; } |