diff options
author | David Greene <greened@obbligato.org> | 2009-11-12 21:04:19 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2009-11-12 21:04:19 +0000 |
commit | d7a18e420e1a95c06f551ded98531eb3ae97eaa9 (patch) | |
tree | f2c55da0a6b32a173d9f75f838cfd675da55678d | |
parent | b9c2fd964ee7dd7823ac71db8443055e4d0f1c15 (diff) |
Fix a build error by providing a missing enum value.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@87028 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Value.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/Value.h b/include/llvm/Value.h index 87a6c02d29..67d94458fe 100644 --- a/include/llvm/Value.h +++ b/include/llvm/Value.h @@ -226,7 +226,9 @@ public: PseudoSourceValueVal, // This is an instance of PseudoSourceValue FixedStackPseudoSourceValueVal, // This is an instance of PseudoSourceValue InstructionVal, // This is an instance of Instruction - + FixedStackPseudoSourceValueVal, // This is an instance of + // FixedStackPseudoSourceValue + // Markers: ConstantFirstVal = FunctionVal, ConstantLastVal = ConstantPointerNullVal |