• Anh Kagi
    link
    fedilink
    Français
    arrow-up
    9
    ·
    13 days ago

    sometimes it’s also bugs caused by optimizations.

    • xthexder@l.sw0.com
      link
      fedilink
      arrow-up
      1
      ·
      13 days ago

      And that’s where Release with debug symbols comes in. Definitely harder to track down what’s going on when it skips 10 lines of code in one step though. Usually my code ends up the other way though, because debug mode has extra assertions to catch things like uninitialized memory or access-after-free (I think specifically MSVC sets memory to 0xcdcdcdcd on free in debug mode).