summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2016-01-12 07:26:28 +0000
committerLang Hames <lhames@gmail.com>2016-01-12 07:26:28 +0000
commitaf1d1a4f04e9388df36d9573ebdda8b263538491 (patch)
treed8aa8c73ebd7f87fcfe67f1104f06622e12cf6df /llvm
parent1611ec44c3750cde5389b8b4bdd309e67a0619df (diff)
downloadbcm5719-llvm-af1d1a4f04e9388df36d9573ebdda8b263538491.tar.gz
bcm5719-llvm-af1d1a4f04e9388df36d9573ebdda8b263538491.zip
[Orc] Comment out debugging output in OrcRemoteTargetClient::reserveMem to see
whether this affects the GCC 4.7 ICE on http://lab.llvm.org:8011/builders/clang-x86_64-ubuntu-gdb-75 . llvm-svn: 257458
Diffstat (limited to 'llvm')
-rw-r--r--llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h b/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
index eb64c4249f8..596a0756be7 100644
--- a/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
+++ b/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
@@ -102,7 +102,7 @@ public:
uint32_t RWDataAlign) override {
Unmapped.push_back(ObjectAllocs());
- DEBUG(dbgs() << "Allocator " << Id << " reserved:\n");
+// DEBUG(dbgs() << "Allocator " << Id << " reserved:\n");
if (CodeSize != 0) {
if (std::error_code EC = Client.reserveMem(
@@ -111,10 +111,10 @@ public:
// FIXME; Add error to poll.
llvm_unreachable("Failed reserving remote memory.");
}
- DEBUG(dbgs() << " code: "
- << format("0x%016x", Unmapped.back().RemoteCodeAddr)
- << " (" << CodeSize << " bytes, alignment " << CodeAlign
- << ")\n");
+// DEBUG(dbgs() << " code: "
+// << format("0x%016x", Unmapped.back().RemoteCodeAddr)
+// << " (" << CodeSize << " bytes, alignment " << CodeAlign
+// << ")\n");
}
if (RODataSize != 0) {
@@ -125,10 +125,10 @@ public:
// FIXME; Add error to poll.
llvm_unreachable("Failed reserving remote memory.");
}
- DEBUG(dbgs() << " ro-data: "
- << format("0x%016x", Unmapped.back().RemoteRODataAddr)
- << " (" << RODataSize << " bytes, alignment "
- << RODataAlign << ")\n");
+// DEBUG(dbgs() << " ro-data: "
+// << format("0x%016x", Unmapped.back().RemoteRODataAddr)
+// << " (" << RODataSize << " bytes, alignment "
+// << RODataAlign << ")\n");
}
if (RWDataSize != 0) {
@@ -139,10 +139,10 @@ public:
// FIXME; Add error to poll.
llvm_unreachable("Failed reserving remote memory.");
}
- DEBUG(dbgs() << " rw-data: "
- << format("0x%016x", Unmapped.back().RemoteRWDataAddr)
- << " (" << RWDataSize << " bytes, alignment "
- << RWDataAlign << ")\n");
+// DEBUG(dbgs() << " rw-data: "
+// << format("0x%016x", Unmapped.back().RemoteRWDataAddr)
+// << " (" << RWDataSize << " bytes, alignment "
+// << RWDataAlign << ")\n");
}
}
OpenPOWER on IntegriCloud