[llvm-commits] CVS: llvm/lib/Target/TargetData.cpp
Devang Patel
dpatel at apple.com
Wed May 2 14:41:23 PDT 2007
Changes in directory llvm/lib/Target:
TargetData.cpp updated: 1.109 -> 1.110
---
Log message:
Use 'static const char' instead of 'static const int'.
Due to darwin gcc bug, one version of darwin linker coalesces
static const int, which defauts PassID based pass identification.
---
Diffs of the changes: (+1 -1)
TargetData.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Target/TargetData.cpp
diff -u llvm/lib/Target/TargetData.cpp:1.109 llvm/lib/Target/TargetData.cpp:1.110
--- llvm/lib/Target/TargetData.cpp:1.109 Wed May 2 15:37:47 2007
+++ llvm/lib/Target/TargetData.cpp Wed May 2 16:39:19 2007
@@ -35,7 +35,7 @@
// Register the default SparcV9 implementation...
RegisterPass<TargetData> X("targetdata", "Target Data Layout");
}
-const int TargetData::ID = 0;
+const char TargetData::ID = 0;
//===----------------------------------------------------------------------===//
// Support for StructLayout
More information about the llvm-commits
mailing list