llvm-6502/lib
Chris Lattner c760be99db Finally eliminate printMCInst and send instructions through
the streamer.  Demo:

$ cat t.ll 
define i32 @test() nounwind {
  ret i32 42
}
$ llc t.ll -o -
...
_test: 
	movl	$42, %eax
	ret
$ llc t.ll -o t.o -filetype=obj
$ otool -tv t.o 
t.o:
(__TEXT,__text) section
_test:
00000000	movl	$0x0000002a,%eax
00000005	ret



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95179 91177308-0d34-0410-b5e6-96231b3b80d8
2010-02-03 01:13:25 +00:00
..
Analysis Various code simplifications. 2010-02-02 01:38:49 +00:00
Archive
AsmParser
Bitcode
CodeGen rejigger the world so that EmitInstruction prints the \n at 2010-02-03 01:09:55 +00:00
CompilerDriver
ExecutionEngine
Linker
MC refactor code so that LLVMTargetMachine creates the asmstreamer and 2010-02-02 23:37:42 +00:00
Support
System
Target Finally eliminate printMCInst and send instructions through 2010-02-03 01:13:25 +00:00
Transforms Fix some comment typos. 2010-02-03 00:33:21 +00:00
VMCore Adding missing methods for creating Add, Mul, Neg and Sub with NUW. 2010-02-02 12:53:04 +00:00
Makefile