diff options
author | David Greene <greened@obbligato.org> | 2009-08-03 21:55:09 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2009-08-03 21:55:09 +0000 |
commit | ec9bc28812e6b845e585a780116a9a81ee8fc208 (patch) | |
tree | 205714e9a8764d1a4bf833320b282d22624d66a9 /llvm/lib/CodeGen/Dump.cpp | |
parent | d2c179c8f6a8569d6307532e2aac0ac4a5e4e71a (diff) | |
download | bcm5719-llvm-ec9bc28812e6b845e585a780116a9a81ee8fc208.tar.gz bcm5719-llvm-ec9bc28812e6b845e585a780116a9a81ee8fc208.zip |
Re-apply LiveInterval index dumping patch, with fixes suggested by Bill
and others.
llvm-svn: 78003
Diffstat (limited to 'llvm/lib/CodeGen/Dump.cpp')
-rw-r--r-- | llvm/lib/CodeGen/Dump.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/Dump.cpp b/llvm/lib/CodeGen/Dump.cpp new file mode 100644 index 00000000000..2e70d5f25e9 --- /dev/null +++ b/llvm/lib/CodeGen/Dump.cpp @@ -0,0 +1,18 @@ +//===- lib/Support/Dump.h - Virtual function homes --------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file provides the PrefixPrinter virtual function homes. +// +//===----------------------------------------------------------------------===// + +#include "llvm/CodeGen/Dump.h" + +using namespace llvm; + +PrefixPrinter::~PrefixPrinter() {} |