[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp TraceValues.cpp
Reid Spencer
reid at x10sys.com
Wed Sep 1 15:55:58 PDT 2004
Changes in directory llvm/lib/Transforms/Instrumentation:
TraceBasicBlocks.cpp updated: 1.7 -> 1.8
TraceValues.cpp updated: 1.68 -> 1.69
---
Log message:
Changes For Bug 352: http://llvm.cs.uiuc.edu/PR352
Move include/Config and include/Support into include/llvm/Config,
include/llvm/ADT and include/llvm/Support. From here on out, all LLVM
public header files must be under include/llvm/.
---
Diffs of the changes: (+3 -3)
Index: llvm/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp
diff -u llvm/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp:1.7 llvm/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp:1.8
--- llvm/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp:1.7 Thu Jul 29 12:27:02 2004
+++ llvm/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp Wed Sep 1 17:55:36 2004
@@ -20,7 +20,7 @@
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
#include "llvm/Instructions.h"
#include "ProfilingUtils.h"
-#include "Support/Debug.h"
+#include "llvm/Support/Debug.h"
#include <set>
using namespace llvm;
Index: llvm/lib/Transforms/Instrumentation/TraceValues.cpp
diff -u llvm/lib/Transforms/Instrumentation/TraceValues.cpp:1.68 llvm/lib/Transforms/Instrumentation/TraceValues.cpp:1.69
--- llvm/lib/Transforms/Instrumentation/TraceValues.cpp:1.68 Thu Jul 29 12:25:20 2004
+++ llvm/lib/Transforms/Instrumentation/TraceValues.cpp Wed Sep 1 17:55:36 2004
@@ -19,8 +19,8 @@
#include "llvm/Module.h"
#include "llvm/Pass.h"
#include "llvm/Assembly/Writer.h"
-#include "Support/CommandLine.h"
-#include "Support/StringExtras.h"
+#include "llvm/Support/CommandLine.h"
+#include "llvm/ADT/StringExtras.h"
#include <algorithm>
#include <sstream>
using namespace llvm;
More information about the llvm-commits
mailing list