Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump minimal supported LLVM version to 9 #78848

Merged
merged 7 commits into from
Nov 15, 2020
Merged

Commits on Nov 12, 2020

  1. Bumped minimal tested LLVM version to 9

    This bumps the minimal tested llvm version to 9.
    This should enable supporting newer LLVM features (and CPU extensions).
    DevJPM committed Nov 12, 2020
    Configuration menu
    Copy the full SHA
    f8a32e9 View commit details
    Browse the repository at this point in the history
  2. explicitly add llvm-9-dev in dockerfile

    apparently llvm-8-tools already had llvm-8-dev as a dependency
    which was removed in llvm-9-tools, so we need to explicitly pull
    llvm-9-dev to make a build
    DevJPM committed Nov 12, 2020
    Configuration menu
    Copy the full SHA
    6323565 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6830f1c View commit details
    Browse the repository at this point in the history
  4. fully exploited the dropped support of LLVM 8

    This commit grepped for LLVM_VERSION_GE, LLVM_VERSION_LT, get_major_version and
    min-llvm-version and statically evaluated every expression possible
    (and sensible) assuming that the LLVM version is >=9 now
    DevJPM committed Nov 12, 2020
    Configuration menu
    Copy the full SHA
    b51bcc7 View commit details
    Browse the repository at this point in the history
  5. Removed an unused function now that LLVM 9 is the minimal supported v…

    …ersion
    
    The function was only used in LLVM 8 compatibility code
    and was found and flagged by dead code detection and now removed.
    DevJPM committed Nov 12, 2020
    Configuration menu
    Copy the full SHA
    8236830 View commit details
    Browse the repository at this point in the history
  6. Dropped Support for Bidirectional Custom Target Definition Emulation

    as requested in the review and argued that this is only consistent with later LLVM upgrades
    DevJPM committed Nov 12, 2020
    Configuration menu
    Copy the full SHA
    7e443c4 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    86193ca View commit details
    Browse the repository at this point in the history