LLVM backend for 6502
Go to file
Daniel Dunbar d14787e497 Change raw_svector_ostream to reserve the input buffer if necessary, Ted was
right.
 - This class turns out to be much more convenient to use if we do this; clients
   can make sure the buffer is always big enough if they care (since our current
   idiom tends to be to use a SmallString<256> for the input to this we should
   generally be avoiding an unnecessary malloc).

Also, add a convenience raw_svector_ostream::str method which flushes the buffer
and returns a StringRef for the vector contents.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79446 91177308-0d34-0410-b5e6-96231b3b80d8
2009-08-19 18:40:58 +00:00
autoconf
bindings Convert the rest of the ocaml types and functions to use context. 2009-08-19 17:32:24 +00:00
cmake Fix cmake build on non-x86 targets. Patch by 2009-08-19 12:41:52 +00:00
docs Add a first stab at describing LLVMContext. 2009-08-19 17:58:52 +00:00
examples
include Change raw_svector_ostream to reserve the input buffer if necessary, Ted was 2009-08-19 18:40:58 +00:00
lib Change raw_svector_ostream to reserve the input buffer if necessary, Ted was 2009-08-19 18:40:58 +00:00
projects
runtime
test Fix typo 2009-08-19 18:35:54 +00:00
tools Fix a commento. 2009-08-19 16:25:53 +00:00
unittests Add SmallVector::{capacity,set_size}. 2009-08-19 17:48:28 +00:00
utils
website
win32
Xcode
build-for-llvm-top.sh
CMakeLists.txt
configure
CREDITS.TXT Test commit access with a first act of vanity. 2009-08-19 15:07:40 +00:00
LICENSE.TXT
llvm.spec.in
Makefile
Makefile.common
Makefile.config.in
Makefile.rules
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.