Initial checkin of X86 backend.
authorChris Lattner <sabre@nondot.org>
Fri, 25 Oct 2002 22:55:53 +0000 (22:55 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 25 Oct 2002 22:55:53 +0000 (22:55 +0000)
commit726140821f96e3472a8eccef0c67c0b5ad65a1d9
tree39e64fba6031b0208095b08d1302fcb4b0972c3f
parenta750de9bfb75f547c670a3c96d836a6dcefc2529
Initial checkin of X86 backend.
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
13 files changed:
lib/Target/X86/InstSelectSimple.cpp [new file with mode: 0644]
lib/Target/X86/Makefile [new file with mode: 0644]
lib/Target/X86/Printer.cpp [new file with mode: 0644]
lib/Target/X86/README.txt [new file with mode: 0644]
lib/Target/X86/X86.h [new file with mode: 0644]
lib/Target/X86/X86AsmPrinter.cpp [new file with mode: 0644]
lib/Target/X86/X86ISelSimple.cpp [new file with mode: 0644]
lib/Target/X86/X86InstrInfo.cpp [new file with mode: 0644]
lib/Target/X86/X86InstrInfo.def [new file with mode: 0644]
lib/Target/X86/X86InstrInfo.h [new file with mode: 0644]
lib/Target/X86/X86RegisterInfo.cpp [new file with mode: 0644]
lib/Target/X86/X86RegisterInfo.def [new file with mode: 0644]
lib/Target/X86/X86RegisterInfo.h [new file with mode: 0644]