diff options
author | Zachary Turner <zturner@google.com> | 2017-02-25 00:33:34 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-02-25 00:33:34 +0000 |
commit | d2684b7969e43d2016cd9454a24398b3adceec4d (patch) | |
tree | 3b20c8381cdaa1008b47b73d9210178b7ded42d3 /llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp | |
parent | f0cb13d704c87843d083a3eb646e36007e7a6a7f (diff) | |
download | llvm-d2684b7969e43d2016cd9454a24398b3adceec4d.zip llvm-d2684b7969e43d2016cd9454a24398b3adceec4d.tar.gz llvm-d2684b7969e43d2016cd9454a24398b3adceec4d.tar.bz2 |
[PDB] Rename Stream related source files.
This is part of a larger effort to get the Stream code moved
up to Support. I don't want to do it in one large patch, in
part because the changes are so big that it will treat everything
as file deletions and add, losing history in the process.
Aside from that though, it's just a good idea in general to
make small changes.
So this change only changes the names of the Stream related
source files, and applies necessary source fix ups.
llvm-svn: 296211
Diffstat (limited to 'llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp b/llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp index fb8e34e..fde61dd 100644 --- a/llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp +++ b/llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp @@ -11,9 +11,9 @@ #include "llvm/ADT/BitVector.h" +#include "llvm/DebugInfo/MSF/BinaryStream.h" +#include "llvm/DebugInfo/MSF/BinaryStreamWriter.h" #include "llvm/DebugInfo/MSF/MSFBuilder.h" -#include "llvm/DebugInfo/MSF/StreamInterface.h" -#include "llvm/DebugInfo/MSF/StreamWriter.h" #include "llvm/DebugInfo/PDB/GenericError.h" #include "llvm/DebugInfo/PDB/Native/DbiStream.h" #include "llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h" |