dotnet / corert

This repo contains CoreRT, an experimental .NET Core runtime optimized for AOT (ahead of time compilation) scenarios, with the accompanying compiler toolchain.
http://dot.net
MIT License
2.91k stars 511 forks source link

Clean up unused RelocType values in Relocation.cs #3440

Closed sergign60 closed 7 years ago

sergign60 commented 7 years ago

The following values should most likely be cleaned (Relocation.cs)

    // TODO: Clean up
    IMAGE_REL_THUMB_MOV32           = 0x11,     // Thumb2: MOVW/MOVT
    IMAGE_REL_THUMB_BRANCH24        = 0x14,     // Thumb2: B, BL
jkotas commented 7 years ago

Fixed by https://github.com/dotnet/corert/pull/3444