[llvm-commits] CVS: llvm/include/llvm/Bytecode/Format.h
Chris Lattner
lattner at cs.uiuc.edu
Mon Dec 1 01:09:00 PST 2003
Changes in directory llvm/include/llvm/Bytecode:
Format.h updated: 1.7 -> 1.8
---
Log message:
Add new block number
---
Diffs of the changes: (+4 -0)
Index: llvm/include/llvm/Bytecode/Format.h
diff -u llvm/include/llvm/Bytecode/Format.h:1.7 llvm/include/llvm/Bytecode/Format.h:1.8
--- llvm/include/llvm/Bytecode/Format.h:1.7 Sun Nov 30 23:40:37 2003
+++ llvm/include/llvm/Bytecode/Format.h Mon Dec 1 01:08:06 2003
@@ -37,6 +37,10 @@
// Can also have ConstantPool block
// Can also have SymbolTable block
BasicBlock = 0x31, // May contain many basic blocks
+
+ // InstructionList - The instructions in the body of a function. This
+ // superceeds the old BasicBlock node.
+ InstructionList = 0x32,
};
};
More information about the llvm-commits
mailing list