[PATCH] D101819: [DRAFT][M68k GloballSel]Adding initial GlobalISel infrastructure

Quentin Colombet via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon May 24 17:38:52 PDT 2021


qcolombet added a comment.

Hi,

> Add GlobalISel infrastructure up to the point where we can select a ret void.

Could you add a test case for that?

E.g., something as simple as:

  ; RUN: llc -global-isel %s -o - | FileCheck %s
  
  ; CHECK-LABEL: noArgRetVoid:
  ; CHECK: <whatever is your return instruction here>
  define void @noArgRetVoid() {
    ret void
  }


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D101819/new/

https://reviews.llvm.org/D101819



More information about the llvm-commits mailing list