[llvm-commits] [llvm] r87028 - /llvm/trunk/include/llvm/Value.h
David Greene
greened at obbligato.org
Thu Nov 12 13:04:20 PST 2009
Author: greened
Date: Thu Nov 12 15:04:19 2009
New Revision: 87028
URL: http://llvm.org/viewvc/llvm-project?rev=87028&view=rev
Log:
Fix a build error by providing a missing enum value.
Modified:
llvm/trunk/include/llvm/Value.h
Modified: llvm/trunk/include/llvm/Value.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Value.h?rev=87028&r1=87027&r2=87028&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Value.h (original)
+++ llvm/trunk/include/llvm/Value.h Thu Nov 12 15:04:19 2009
@@ -226,7 +226,9 @@
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
More information about the llvm-commits
mailing list