summaryrefslogtreecommitdiffstats
path: root/compiler/driver/compiler_driver.h
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2014-03-08 07:50:13 +0000
committerIan Rogers <irogers@google.com>2014-03-08 07:50:13 +0000
commitd54f3a6219bca6ae018f4395fa0f1254bd4459be (patch)
tree6d9e7470f3143917c932671edc5896ea5b354f57 /compiler/driver/compiler_driver.h
parent87f8b4cf0c1d6aab3eb5d1e99cc4e7cf175ef772 (diff)
downloadart-d54f3a6219bca6ae018f4395fa0f1254bd4459be.zip
art-d54f3a6219bca6ae018f4395fa0f1254bd4459be.tar.gz
art-d54f3a6219bca6ae018f4395fa0f1254bd4459be.tar.bz2
Revert "Make clang the default compiler on host."
This reverts commit 87f8b4cf0c1d6aab3eb5d1e99cc4e7cf175ef772. Change-Id: I91a513042f0f9cf66288a296ad4a3b5da7830c7b
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r--compiler/driver/compiler_driver.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h
index 817da17..12463a9 100644
--- a/compiler/driver/compiler_driver.h
+++ b/compiler/driver/compiler_driver.h
@@ -564,11 +564,8 @@ class CompilerDriver {
class ProfileData {
public:
ProfileData() : count_(0), method_size_(0), percent_(0) {}
- ProfileData(const std::string& method_name, uint32_t count, uint32_t method_size, double percent) :
+ ProfileData(std::string method_name, uint32_t count, uint32_t method_size, double percent) :
method_name_(method_name), count_(count), method_size_(method_size), percent_(percent) {
- // TODO: currently method_size_ and count_ are unused.
- UNUSED(method_size_);
- UNUSED(count_);
}
bool IsAbove(double v) const { return percent_ >= v; }