[llvm-commits] [llvm] r74742 - /llvm/trunk/utils/TableGen/

Bill Wendling isanbard at gmail.com
Thu Jul 2 17:57:05 PDT 2009


On Jul 2, 2009, at 5:10 PM, Daniel Dunbar wrote:

> Author: ddunbar
> Date: Thu Jul  2 19:10:29 2009
> New Revision: 74742
>
> URL: http://llvm.org/viewvc/llvm-project?rev=74742&view=rev
> Log:
> Replace std::iostreams with raw_ostream in TableGen.
> - Sorry, I can't help myself.
>
> - No intended functionality change.
>
> =
> =
> =
> =
> =
> =
> =
> =
> ======================================================================
> --- llvm/trunk/utils/TableGen/AsmWriterEmitter.cpp (original)
> +++ llvm/trunk/utils/TableGen/AsmWriterEmitter.cpp Thu Jul  2  
> 19:10:29 2009
> @@ -19,6 +19,7 @@
> #include "llvm/Support/Debug.h"
> #include "llvm/Support/MathExtras.h"
> #include <algorithm>
> +#include <iostream>

Um.... :-)

> Modified: llvm/trunk/utils/TableGen/CodeGenDAGPatterns.cpp
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/CodeGenDAGPatterns.cpp?rev=74742&r1=74741&r2=74742&view=diff
>
> = 
> = 
> = 
> = 
> = 
> = 
> = 
> = 
> ======================================================================
> --- llvm/trunk/utils/TableGen/CodeGenDAGPatterns.cpp (original)
> +++ llvm/trunk/utils/TableGen/CodeGenDAGPatterns.cpp Thu Jul  2  
> 19:10:29 2009
> @@ -16,9 +16,9 @@
> #include "Record.h"
> #include "llvm/ADT/StringExtras.h"
> #include "llvm/Support/Debug.h"
> -#include "llvm/Support/Streams.h"
> #include <set>
> #include <algorithm>
> +#include <iostream>

And here.

> Modified: llvm/trunk/utils/TableGen/DAGISelEmitter.cpp
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/DAGISelEmitter.cpp?rev=74742&r1=74741&r2=74742&view=diff
>
> = 
> = 
> = 
> = 
> = 
> = 
> = 
> = 
> ======================================================================
> --- llvm/trunk/utils/TableGen/DAGISelEmitter.cpp (original)
> +++ llvm/trunk/utils/TableGen/DAGISelEmitter.cpp Thu Jul  2 19:10:29  
> 2009
> @@ -18,9 +18,9 @@
> #include "llvm/Support/Debug.h"
> #include "llvm/Support/MathExtras.h"
> #include "llvm/Support/Debug.h"
> -#include "llvm/Support/Streams.h"
> #include <algorithm>
> #include <deque>
> +#include <iostream>

etc...

:-)

-bw



More information about the llvm-commits mailing list