This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/25019] Promoting long to long long generates no warning and/or incorrect result.
- From: "schwab at suse dot de" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 24 Nov 2005 17:28:11 -0000
- Subject: [Bug c/25019] Promoting long to long long generates no warning and/or incorrect result.
- References: <bug-25019-11759@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #4 from schwab at suse dot de 2005-11-24 17:28 -------
(In reply to comment #2)
> a=1<<b;
> is done in the type of b and not of type of a
The type of the right operand of a shift expression has no significance at all.
1 has type int, so has 1<<b.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25019