diff options
author | Dan Gohman <gohman@apple.com> | 2008-12-03 21:37:21 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-12-03 21:37:21 +0000 |
commit | d71703deec9e3fe90833e82e0c8b6bf7e5af55fd (patch) | |
tree | fc1e18f70a58f40a047e8051090cc01842a5e1dd /include/llvm/CodeGen/PseudoSourceValue.h | |
parent | 544e0d0e52e68e8bb0c4ce18bd6584602353ce1c (diff) | |
download | external_llvm-d71703deec9e3fe90833e82e0c8b6bf7e5af55fd.tar.gz external_llvm-d71703deec9e3fe90833e82e0c8b6bf7e5af55fd.tar.bz2 external_llvm-d71703deec9e3fe90833e82e0c8b6bf7e5af55fd.zip |
Have PseudoSourceValue override Value::dump, so that it works
on PseudoSourceValue values. This also fixes a FIXME in
lib/VMCode/AsmWriter.cpp.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60507 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/PseudoSourceValue.h')
-rw-r--r-- | include/llvm/CodeGen/PseudoSourceValue.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/PseudoSourceValue.h b/include/llvm/CodeGen/PseudoSourceValue.h index dccf735ed0..3ad2502fe0 100644 --- a/include/llvm/CodeGen/PseudoSourceValue.h +++ b/include/llvm/CodeGen/PseudoSourceValue.h @@ -28,6 +28,12 @@ namespace llvm { public: PseudoSourceValue(); + /// dump - Support for debugging, callable in GDB: V->dump() + // + virtual void dump() const; + + /// print - Implement operator<< on PseudoSourceValue. + /// virtual void print(raw_ostream &OS) const; /// isConstant - Test whether this PseudoSourceValue has a constant value. |