[llvm-commits] CVS: llvm/include/llvm/Support/SlowOperationInformer.h
Chris Lattner
lattner at cs.uiuc.edu
Wed May 24 23:00:02 PDT 2006
Changes in directory llvm/include/llvm/Support:
SlowOperationInformer.h updated: 1.6 -> 1.7
---
Log message:
Fix breakage on platforms where string/cassert don't pull in int64_t.
---
Diffs of the changes: (+1 -0)
SlowOperationInformer.h | 1 +
1 files changed, 1 insertion(+)
Index: llvm/include/llvm/Support/SlowOperationInformer.h
diff -u llvm/include/llvm/Support/SlowOperationInformer.h:1.6 llvm/include/llvm/Support/SlowOperationInformer.h:1.7
--- llvm/include/llvm/Support/SlowOperationInformer.h:1.6 Wed May 24 14:21:13 2006
+++ llvm/include/llvm/Support/SlowOperationInformer.h Thu May 25 00:59:50 2006
@@ -33,6 +33,7 @@
#include <string>
#include <cassert>
+#include "llvm/Support/DataTypes.h"
namespace llvm {
class SlowOperationInformer {
More information about the llvm-commits
mailing list