[llvm-commits] CVS: llvm-tv/tools/llvm-tv/CodeViewer.cpp GraphDrawer.cpp GraphPrinters.cpp HTMLPrinterUtils.cpp TVApplication.cpp
Misha Brukman
brukman at cs.uiuc.edu
Tue Oct 5 11:44:55 PDT 2004
Changes in directory llvm-tv/tools/llvm-tv:
CodeViewer.cpp updated: 1.9 -> 1.10
GraphDrawer.cpp updated: 1.5 -> 1.6
GraphPrinters.cpp updated: 1.5 -> 1.6
HTMLPrinterUtils.cpp updated: 1.3 -> 1.4
TVApplication.cpp updated: 1.27 -> 1.28
---
Log message:
Adjust for changes in LLVM .h file locations and structure
---
Diffs of the changes: (+7 -11)
Index: llvm-tv/tools/llvm-tv/CodeViewer.cpp
diff -u llvm-tv/tools/llvm-tv/CodeViewer.cpp:1.9 llvm-tv/tools/llvm-tv/CodeViewer.cpp:1.10
--- llvm-tv/tools/llvm-tv/CodeViewer.cpp:1.9 Wed May 12 21:11:50 2004
+++ llvm-tv/tools/llvm-tv/CodeViewer.cpp Tue Oct 5 13:44:44 2004
@@ -5,7 +5,7 @@
#include "llvm/Function.h"
#include "llvm/Instruction.h"
#include "llvm/Value.h"
-#include "Support/StringExtras.h"
+#include "llvm/ADT/StringExtras.h"
#include <wx/listctrl.h>
#include <map>
#include <sstream>
Index: llvm-tv/tools/llvm-tv/GraphDrawer.cpp
diff -u llvm-tv/tools/llvm-tv/GraphDrawer.cpp:1.5 llvm-tv/tools/llvm-tv/GraphDrawer.cpp:1.6
--- llvm-tv/tools/llvm-tv/GraphDrawer.cpp:1.5 Thu May 6 02:19:49 2004
+++ llvm-tv/tools/llvm-tv/GraphDrawer.cpp Tue Oct 5 13:44:44 2004
@@ -1,7 +1,7 @@
#include "wx/image.h"
#include "GraphDrawer.h"
#include "TVTreeItem.h"
-#include "Support/FileUtilities.h"
+#include "llvm/Support/FileUtilities.h"
#include <unistd.h>
#include <iostream>
using namespace llvm;
Index: llvm-tv/tools/llvm-tv/GraphPrinters.cpp
diff -u llvm-tv/tools/llvm-tv/GraphPrinters.cpp:1.5 llvm-tv/tools/llvm-tv/GraphPrinters.cpp:1.6
--- llvm-tv/tools/llvm-tv/GraphPrinters.cpp:1.5 Thu Jul 15 16:20:50 2004
+++ llvm-tv/tools/llvm-tv/GraphPrinters.cpp Tue Oct 5 13:44:44 2004
@@ -20,7 +20,7 @@
#include "llvm/Analysis/CallGraph.h"
#include "llvm/Analysis/DataStructure/DataStructure.h"
#include "llvm/Analysis/DataStructure/DSGraph.h"
-#include "Support/GraphWriter.h"
+#include "llvm/Support/GraphWriter.h"
#include <fstream>
using namespace llvm;
Index: llvm-tv/tools/llvm-tv/HTMLPrinterUtils.cpp
diff -u llvm-tv/tools/llvm-tv/HTMLPrinterUtils.cpp:1.3 llvm-tv/tools/llvm-tv/HTMLPrinterUtils.cpp:1.4
--- llvm-tv/tools/llvm-tv/HTMLPrinterUtils.cpp:1.3 Thu Jun 10 08:21:25 2004
+++ llvm-tv/tools/llvm-tv/HTMLPrinterUtils.cpp Tue Oct 5 13:44:44 2004
@@ -5,18 +5,14 @@
#include "llvm/Assembly/AsmAnnotationWriter.h"
#include "llvm/Constants.h"
#include "llvm/DerivedTypes.h"
-#include "llvm/Instruction.h"
-#include "llvm/iMemory.h"
-#include "llvm/iTerminators.h"
-#include "llvm/iPHINode.h"
-#include "llvm/iOther.h"
+#include "llvm/Instructions.h"
#include "llvm/Module.h"
#include "llvm/SymbolTable.h"
#include "llvm/Analysis/SlotCalculator.h"
#include "llvm/Assembly/Writer.h"
#include "llvm/Support/CFG.h"
-#include "Support/StringExtras.h"
-#include "Support/STLExtras.h"
+#include "llvm/ADT/StringExtras.h"
+#include "llvm/Support/STLExtras.h"
#include <algorithm>
using namespace llvm;
Index: llvm-tv/tools/llvm-tv/TVApplication.cpp
diff -u llvm-tv/tools/llvm-tv/TVApplication.cpp:1.27 llvm-tv/tools/llvm-tv/TVApplication.cpp:1.28
--- llvm-tv/tools/llvm-tv/TVApplication.cpp:1.27 Thu Jul 15 16:21:01 2004
+++ llvm-tv/tools/llvm-tv/TVApplication.cpp Tue Oct 5 13:44:44 2004
@@ -7,7 +7,7 @@
#include "CodeViewer.h"
#include "TVApplication.h"
#include "TVFrame.h"
-#include "Support/FileUtils.h"
+#include "llvm-tv/Support/FileUtils.h"
#include "llvm-tv/Config.h"
#include <wx/image.h>
#include <cerrno>
More information about the llvm-commits
mailing list