diff options
author | Dan Gohman <gohman@apple.com> | 2008-08-27 15:24:43 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-08-27 15:24:43 +0000 |
commit | ebe1dbabc18c0d5f080392b0ec574cd638ec41e7 (patch) | |
tree | c34eeda4a0b2f71b769144d49f5c77dbe5b884e4 | |
parent | 39dfc2cb9c1fb53c8699cff033f6fa6c5b618e95 (diff) |
Unbreak PseudoSourceValue::print. This fixes -print-machine-instrs
and various other things.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55415 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/PseudoSourceValue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/PseudoSourceValue.h b/include/llvm/CodeGen/PseudoSourceValue.h index 7e805ab5ec..dccf735ed0 100644 --- a/include/llvm/CodeGen/PseudoSourceValue.h +++ b/include/llvm/CodeGen/PseudoSourceValue.h @@ -28,7 +28,7 @@ namespace llvm { public: PseudoSourceValue(); - void print(raw_ostream &OS) const; + virtual void print(raw_ostream &OS) const; /// isConstant - Test whether this PseudoSourceValue has a constant value. /// |