1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

Old versions of GCC doesn't have <ostream> :(

llvm-svn: 6661
This commit is contained in:
Chris Lattner 2003-06-06 23:06:20 +00:00
parent 68ee069591
commit 51bbe7b282
2 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,5 @@
#include "Record.h"
#include "CodeEmitterGen.h"
#include <ostream>
void CodeEmitterGen::createEmitter(std::ostream &o) {
std::vector<Record*> Insts;

View File

@ -7,7 +7,7 @@
#define CODEMITTERGEN_H
#include "Record.h"
#include <ostream>
#include <iostream>
struct CodeEmitterGen {
RecordKeeper &Records;