[llvm-commits] [llvm] r55415 - /llvm/trunk/include/llvm/CodeGen/PseudoSourceValue.h
Dan Gohman
gohman at apple.com
Wed Aug 27 08:24:44 PDT 2008
Author: djg
Date: Wed Aug 27 10:24:43 2008
New Revision: 55415
URL: http://llvm.org/viewvc/llvm-project?rev=55415&view=rev
Log:
Unbreak PseudoSourceValue::print. This fixes -print-machine-instrs
and various other things.
Modified:
llvm/trunk/include/llvm/CodeGen/PseudoSourceValue.h
Modified: llvm/trunk/include/llvm/CodeGen/PseudoSourceValue.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/PseudoSourceValue.h?rev=55415&r1=55414&r2=55415&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/PseudoSourceValue.h (original)
+++ llvm/trunk/include/llvm/CodeGen/PseudoSourceValue.h Wed Aug 27 10:24:43 2008
@@ -28,7 +28,7 @@
public:
PseudoSourceValue();
- void print(raw_ostream &OS) const;
+ virtual void print(raw_ostream &OS) const;
/// isConstant - Test whether this PseudoSourceValue has a constant value.
///
More information about the llvm-commits
mailing list