Added a temporary hack to get the llvm-streams to work for future checkins.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31978 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling
2006-11-28 22:21:29 +00:00
parent d4d9ab80b7
commit b5ebf15b2b
14 changed files with 114 additions and 7 deletions

View File

@@ -18,6 +18,7 @@
#include "llvm/AbstractTypeUser.h"
#include "llvm/Use.h"
#include "llvm/Support/Casting.h"
#include "llvm/Support/Streams.h"
#include <string>
namespace llvm {
@@ -74,6 +75,9 @@ public:
/// print - Implement operator<< on Value...
///
void print(llvm_ostream &O) const {
if (O.stream()) print(*O.stream());
}
virtual void print(std::ostream &O) const = 0;
/// All values are typed, get the type of this value.