diff options
author | Chris Lattner <sabre@nondot.org> | 2001-09-28 00:06:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-09-28 00:06:05 +0000 |
commit | 459fbcff7e6982744de519630e59dc7e68800ec3 (patch) | |
tree | f8c2f7f0885181b233e4c73c8a4d18b6f93644db /docs | |
parent | a5564c61e86d9893fd2d3d64eafe640a511410ed (diff) | |
download | external_llvm-459fbcff7e6982744de519630e59dc7e68800ec3.zip external_llvm-459fbcff7e6982744de519630e59dc7e68800ec3.tar.gz external_llvm-459fbcff7e6982744de519630e59dc7e68800ec3.tar.bz2 |
Global variables/complex constants have been resolved!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@653 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ChrisNotes.txt | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/docs/ChrisNotes.txt b/docs/ChrisNotes.txt index 1a7b2e6..4c1f9c9 100644 --- a/docs/ChrisNotes.txt +++ b/docs/ChrisNotes.txt @@ -35,11 +35,6 @@ * I need to provide an option to the bytecode loader to ignore memory dependance edges. Instead, the VM would just treat memory operations (load, store, getfield, putfield, call) as pinned instructions. -* I need to have a way to prevent taking the address of a constant pool - reference. You should only be able to take the address of a variable. - Maybe taking the address of a constant copies it? What about virtual - function tables? Maybe a const pointer would be better... Alternatively, - we could alloca a local variable, copy a constant into it, and use that... * Need a way to attach bytecode block info at various levels of asm code. * Recognize and save comments in assembly and bytecode format * Encode line number table in bytecode (like #line), optional table |