diff options
author | Chris Lattner <sabre@nondot.org> | 2009-10-28 00:01:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-10-28 00:01:44 +0000 |
commit | 2ee11eccdde14c95c78773be76b02bb5fd09d7ee (patch) | |
tree | fb35c2b746714f2074d1e391b04682b3080b625f /include/llvm/Value.h | |
parent | cd4f04d6bcb7aefa24d92582fbadfe17519f4756 (diff) |
IR support for the new BlockAddress constant kind. This is
untested and there is no way to use it, next up: doing battle
with asmparser.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85349 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Value.h')
-rw-r--r-- | include/llvm/Value.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Value.h b/include/llvm/Value.h index c09fdfb8a8..b485524b05 100644 --- a/include/llvm/Value.h +++ b/include/llvm/Value.h @@ -210,6 +210,7 @@ public: GlobalAliasVal, // This is an instance of GlobalAlias GlobalVariableVal, // This is an instance of GlobalVariable UndefValueVal, // This is an instance of UndefValue + BlockAddressVal, // This is an instance of BlockAddress ConstantExprVal, // This is an instance of ConstantExpr ConstantAggregateZeroVal, // This is an instance of ConstantAggregateNull ConstantIntVal, // This is an instance of ConstantInt |