mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
fix a layering problem by moving the x86 implementation
of AsmPrinter and InstLowering into libx86 and out of the asmprinter subdirectory. Now X86/AsmPrinter just depends on MC stuff, not all of codegen and LLVM IR. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108782 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
94143ee625
commit
aef40351f6
@ -13,8 +13,8 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "X86AsmPrinter.h"
|
||||
#include "X86ATTInstPrinter.h"
|
||||
#include "X86IntelInstPrinter.h"
|
||||
#include "AsmPrinter/X86ATTInstPrinter.h"
|
||||
#include "AsmPrinter/X86IntelInstPrinter.h"
|
||||
#include "X86MCInstLower.h"
|
||||
#include "X86.h"
|
||||
#include "X86COFFMachineModuleInfo.h"
|
@ -14,9 +14,9 @@
|
||||
#ifndef X86ASMPRINTER_H
|
||||
#define X86ASMPRINTER_H
|
||||
|
||||
#include "../X86.h"
|
||||
#include "../X86MachineFunctionInfo.h"
|
||||
#include "../X86TargetMachine.h"
|
||||
#include "X86.h"
|
||||
#include "X86MachineFunctionInfo.h"
|
||||
#include "X86TargetMachine.h"
|
||||
#include "llvm/ADT/StringSet.h"
|
||||
#include "llvm/CodeGen/AsmPrinter.h"
|
||||
#include "llvm/CodeGen/MachineModuleInfo.h"
|
Loading…
Reference in New Issue
Block a user