mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-10-31 09:11:13 +00:00
726140821f
We can instruction select exactly one instruction 'ret void'. Wow. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4284 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
416 B
C++
18 lines
416 B
C++
//===- X86RegisterInfo.h - X86 Register Information Impl ----------*-C++-*-===//
|
|
//
|
|
// This file contains the X86 implementation of the MRegisterInfo class.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef X86REGISTERINFO_H
|
|
#define X86REGISTERINFO_H
|
|
|
|
#include "llvm/Target/MRegisterInfo.h"
|
|
|
|
struct X86RegisterInfo : public MRegisterInfo {
|
|
X86RegisterInfo();
|
|
|
|
};
|
|
|
|
#endif
|