From dfafd56daa003c1cf0604afda308111f7fff2f04 Mon Sep 17 00:00:00 2001 From: Min-Yih Hsu Date: Tue, 22 Jun 2021 22:58:15 -0700 Subject: [PATCH] [M68k] Fix incorrect #include-ed file in M68kSubtarget In https://reviews.llvm.org/rG2193347e72fa , a cpp file is accidentally included instead of its header file counterpart. This patch fixes this error. --- llvm/lib/Target/M68k/M68kSubtarget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Target/M68k/M68kSubtarget.cpp b/llvm/lib/Target/M68k/M68kSubtarget.cpp index 8cf2b8c..963e83c 100644 --- a/llvm/lib/Target/M68k/M68kSubtarget.cpp +++ b/llvm/lib/Target/M68k/M68kSubtarget.cpp @@ -14,7 +14,7 @@ #include "M68kSubtarget.h" #include "GlSel/M68kCallLowering.h" #include "GlSel/M68kLegalizerInfo.h" -#include "GlSel/M68kRegisterBankInfo.cpp" +#include "GlSel/M68kRegisterBankInfo.h" #include "M68k.h" #include "M68kMachineFunction.h" -- 2.7.4