right shifting

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • crookie

    #1

    right shifting

    if I have the foolowing code,

    main()
    {
    unsigned int i=34;
    i>>=32;
    }

    why does the value of i remain 34? I thought it should be a zero.
    (the g++ compiler gives me a warning about shifting >= size of variable.)
  • Kai-Uwe Bux

    #2
    Re: right shifting

    crookie wrote:
    if I have the foolowing code,
    >
    main()
    {
    unsigned int i=34;
    i>>=32;
    }
    >
    why does the value of i remain 34? I thought it should be a zero.
    (the g++ compiler gives me a warning about shifting >= size of variable.)
    The standard [5.8/1] says about the shift operators:

    [...] The behavior is undefined if the right operand is negative, or
    greater than or equal to the length in bits of the promoted left operand.

    It would appear that on your platform sizeof(int)<=32 , whence you have
    undefined behavior: anything could happen.


    Best

    Kai-Uwe Bux

    Comment

    • Thomas Tutone

      #3
      Re: right shifting

      crookie wrote:
      if I have the foolowing code,
      >
      main()
      {
      unsigned int i=34;
      i>>=32;
      }
      >
      why does the value of i remain 34? I thought it should be a zero.
      (the g++ compiler gives me a warning about shifting >= size of variable.)
      Because on your system, an unsigned int has 32 or fewer bits, and (as I
      recently learned) shifting by any number greater than or equal to the
      number of bits is Undefined Behavior. Which means that any value of i
      is equally valid.

      For more detail, see this thread from over the summer:

      http://tinyurl.com/y382v3

      Best regards,

      Tom

      Comment

      Working...