LLVM backend for 6502
Go to file
Chris Lattner 15c2351a93 Update this test. Due to dag combiner improvements, we now compile
f7/f11 to:

_f7:
	eor r0, r0, #2, 2 @ -2147483648
	bx lr
_f11:
	bic r0, r0, #2, 2 @ -2147483648
	bx lr

instead of:

_f7:
	fmsr s0, r0
	fnegs s0, s0
	fmrs r0, s0
	bx lr

_f11:
	fmsr s0, r0
	fabss s0, s0
	fmrs r0, s0
	bx lr



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46423 91177308-0d34-0410-b5e6-96231b3b80d8
2008-01-27 23:26:37 +00:00
autoconf
bindings
docs
examples
include Fixes for BreakCriticalMachineCodeEdge by Fernando. 2008-01-27 19:51:03 +00:00
lib fix a crash on CodeGen/X86/vector-rem.ll 2008-01-27 23:21:58 +00:00
projects
runtime Fixing the stack walker. 2008-01-24 05:16:36 +00:00
test Update this test. Due to dag combiner improvements, we now compile 2008-01-27 23:26:37 +00:00
tools Add support for frameworks. Patch by Shantonu Sen! 2008-01-27 22:58:59 +00:00
utils Add interator interface to DAGInit also 2008-01-22 11:00:07 +00:00
website
win32
Xcode
build-for-llvm-top.sh
configure
CREDITS.TXT
LICENSE.TXT
llvm.spec.in
Makefile
Makefile.common
Makefile.config.in
Makefile.rules One too many )'s breaks 'make clean' with certain versions of make. 2008-01-22 05:19:26 +00:00
ModuleInfo.txt
README.txt

Low Level Virtual Machine (LLVM)
================================

This directory and its subdirectories contain source code for the Low Level 
Virtual Machine, a toolkit for the construction of highly optimized compilers,
optimizers, and runtime environments. 

LLVM is open source software. You may freely distribute it under the terms of
the license agreement found in LICENSE.txt.

Please see the HTML documentation provided in docs/index.html for further
assistance with LLVM.