[M68k][NFC] Rename 'GlSel' -> 'GISel'
authorMin-Yih Hsu <minyihh@uci.edu>
Thu, 11 Nov 2021 18:59:00 +0000 (10:59 -0800)
committerMin-Yih Hsu <minyihh@uci.edu>
Thu, 11 Nov 2021 19:01:09 +0000 (11:01 -0800)
AArch64 as well as other targets use the abbrev "GISel" so we'd better
to be consistent with them. NFC.

llvm/lib/Target/M68k/CMakeLists.txt
llvm/lib/Target/M68k/GISel/M68kCallLowering.cpp [moved from llvm/lib/Target/M68k/GlSel/M68kCallLowering.cpp with 100% similarity]
llvm/lib/Target/M68k/GISel/M68kCallLowering.h [moved from llvm/lib/Target/M68k/GlSel/M68kCallLowering.h with 100% similarity]
llvm/lib/Target/M68k/GISel/M68kInstructionSelector.cpp [moved from llvm/lib/Target/M68k/GlSel/M68kInstructionSelector.cpp with 100% similarity]
llvm/lib/Target/M68k/GISel/M68kLegalizerInfo.cpp [moved from llvm/lib/Target/M68k/GlSel/M68kLegalizerInfo.cpp with 100% similarity]
llvm/lib/Target/M68k/GISel/M68kLegalizerInfo.h [moved from llvm/lib/Target/M68k/GlSel/M68kLegalizerInfo.h with 100% similarity]
llvm/lib/Target/M68k/GISel/M68kRegisterBankInfo.cpp [moved from llvm/lib/Target/M68k/GlSel/M68kRegisterBankInfo.cpp with 100% similarity]
llvm/lib/Target/M68k/GISel/M68kRegisterBankInfo.h [moved from llvm/lib/Target/M68k/GlSel/M68kRegisterBankInfo.h with 100% similarity]
llvm/lib/Target/M68k/GISel/M68kRegisterBanks.td [moved from llvm/lib/Target/M68k/GlSel/M68kRegisterBanks.td with 100% similarity]
llvm/lib/Target/M68k/M68k.td
llvm/lib/Target/M68k/M68kSubtarget.cpp

index 0e7bcff..e95126e 100644 (file)
@@ -17,10 +17,10 @@ tablegen(LLVM M68kGenAsmMatcher.inc       -gen-asm-matcher)
 add_public_tablegen_target(M68kCommonTableGen)
 
 add_llvm_target(M68kCodeGen
-  GlSel/M68kCallLowering.cpp
-  GlSel/M68kInstructionSelector.cpp
-  GlSel/M68kLegalizerInfo.cpp
-  GlSel/M68kRegisterBankInfo.cpp
+  GISel/M68kCallLowering.cpp
+  GISel/M68kInstructionSelector.cpp
+  GISel/M68kLegalizerInfo.cpp
+  GISel/M68kRegisterBankInfo.cpp
   M68kAsmPrinter.cpp
   M68kCollapseMOVEMPass.cpp
   M68kExpandPseudo.cpp
index 669eb32..fde491e 100644 (file)
@@ -78,7 +78,7 @@ def : Proc<"M68060",  [ FeatureISA60 ]>;
 //===----------------------------------------------------------------------===//
 
 include "M68kRegisterInfo.td"
-include "GlSel/M68kRegisterBanks.td"
+include "GISel/M68kRegisterBanks.td"
 
 //===----------------------------------------------------------------------===//
 // Instruction Descriptions
index c1cac9c..9918897 100644 (file)
@@ -12,9 +12,9 @@
 //===----------------------------------------------------------------------===//
 
 #include "M68kSubtarget.h"
-#include "GlSel/M68kCallLowering.h"
-#include "GlSel/M68kLegalizerInfo.h"
-#include "GlSel/M68kRegisterBankInfo.h"
+#include "GISel/M68kCallLowering.h"
+#include "GISel/M68kLegalizerInfo.h"
+#include "GISel/M68kRegisterBankInfo.h"
 
 #include "M68k.h"
 #include "M68kMachineFunction.h"