llvm-6502/lib
Chris Lattner a7a02fb828 Fix a latent bug exposed by my truncstore patch. We compiled stfiwx-2.ll to:
_test:
	fctiwz f0, f1
	stfiwx f0, 0, r4
	blr 

instead of:

_test:
	fctiwz f0, f1
	stfd f0, -8(r1)
	nop
	nop
	lwz r2, -4(r1)
	stb r2, 0(r4)
	blr 

The former is not correct (stores 4 bytes, not 1).



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46161 91177308-0d34-0410-b5e6-96231b3b80d8
2008-01-18 16:54:56 +00:00
..
Analysis
Archive
AsmParser
Bitcode
CodeGen This commit changes: 2008-01-17 19:59:44 +00:00
Debugger
ExecutionEngine
Linker
Support
System
Target Fix a latent bug exposed by my truncstore patch. We compiled stfiwx-2.ll to: 2008-01-18 16:54:56 +00:00
Transforms DAE bug fix. Don't lose parameter attributes on vararg arguments. 2008-01-17 04:18:54 +00:00
VMCore improve compatibility with mingw, patch by Alain Frisch 2008-01-15 22:50:50 +00:00
Makefile