mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
21 lines
750 B
C++
21 lines
750 B
C++
|
//===-- X86FastISel.cpp - X86 FastISel implementation ---------------------===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// This file defines the X86-specific support for the FastISel class. Much
|
||
|
// of the target-specific code is generated by tablegen in the file
|
||
|
// X86GenFastISel.inc, which is #included here.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "X86.h"
|
||
|
#include "X86RegisterInfo.h"
|
||
|
#include "X86ISelLowering.h"
|
||
|
#include "X86FastISel.h"
|
||
|
#include "X86GenFastISel.inc"
|