[llvm-commits] CVS: llvm/lib/Support/Mangler.cpp
Brian Gaeke
gaeke at cs.uiuc.edu
Fri Jul 25 15:22:24 PDT 2003
Changes in directory llvm/lib/Support:
Mangler.cpp updated: 1.2 -> 1.3
---
Log message:
Include llvm/Support/Mangler.h first. Don't include <iostream>, <set>,
<string>, or llvm/Value.h. Move up the inclusion of llvm/Support/Mangler.h.
---
Diffs of the changes:
Index: llvm/lib/Support/Mangler.cpp
diff -u llvm/lib/Support/Mangler.cpp:1.2 llvm/lib/Support/Mangler.cpp:1.3
--- llvm/lib/Support/Mangler.cpp:1.2 Thu Jul 24 16:37:57 2003
+++ llvm/lib/Support/Mangler.cpp Fri Jul 25 15:21:20 2003
@@ -4,14 +4,10 @@
//
//===----------------------------------------------------------------------===//
-#include <iostream>
-#include <set>
-#include <string>
-#include "llvm/Value.h"
+#include "llvm/Support/Mangler.h"
#include "llvm/Module.h"
#include "llvm/Type.h"
#include "Support/StringExtras.h"
-#include "llvm/Support/Mangler.h"
/// makeNameProper - We don't want identifier names with ., space, or
/// - in them, so we mangle these characters into the strings "d_",
More information about the llvm-commits
mailing list