diff options
author | Andrea Di Biagio <Andrea_DiBiagio@sn.scee.net> | 2018-06-26 11:00:21 +0000 |
---|---|---|
committer | Andrea Di Biagio <Andrea_DiBiagio@sn.scee.net> | 2018-06-26 11:00:21 +0000 |
commit | 580f3eb2266336b59ad0d0cd1c1112b29165648b (patch) | |
tree | 0113803f0e07dfe39a17aff0e6513a2bcc40a454 /llvm/tools/llvm-mca | |
parent | 650db339a557a9f85d79de132a4d567a1daeef9d (diff) | |
download | bcm5719-llvm-580f3eb2266336b59ad0d0cd1c1112b29165648b.tar.gz bcm5719-llvm-580f3eb2266336b59ad0d0cd1c1112b29165648b.zip |
[llvm-mca] Removed wrong NDEBUG guards introduced by my last commit.
This partially reverts r335589.
llvm-svn: 335592
Diffstat (limited to 'llvm/tools/llvm-mca')
-rw-r--r-- | llvm/tools/llvm-mca/LSUnit.cpp | 2 | ||||
-rw-r--r-- | llvm/tools/llvm-mca/RegisterFile.cpp | 3 | ||||
-rw-r--r-- | llvm/tools/llvm-mca/RetireControlUnit.cpp | 3 | ||||
-rw-r--r-- | llvm/tools/llvm-mca/Scheduler.cpp | 2 |
4 files changed, 0 insertions, 10 deletions
diff --git a/llvm/tools/llvm-mca/LSUnit.cpp b/llvm/tools/llvm-mca/LSUnit.cpp index 539183cb7a7..4406e30a593 100644 --- a/llvm/tools/llvm-mca/LSUnit.cpp +++ b/llvm/tools/llvm-mca/LSUnit.cpp @@ -15,10 +15,8 @@ #include "LSUnit.h" #include "Instruction.h" -#ifndef NDEBUG #include "llvm/Support/Debug.h" #include "llvm/Support/raw_ostream.h" -#endif using namespace llvm; diff --git a/llvm/tools/llvm-mca/RegisterFile.cpp b/llvm/tools/llvm-mca/RegisterFile.cpp index 52b3e7716f8..db4a0d17778 100644 --- a/llvm/tools/llvm-mca/RegisterFile.cpp +++ b/llvm/tools/llvm-mca/RegisterFile.cpp @@ -16,10 +16,7 @@ #include "RegisterFile.h" #include "Instruction.h" - -#ifndef NDEBUG #include "llvm/Support/Debug.h" -#endif using namespace llvm; diff --git a/llvm/tools/llvm-mca/RetireControlUnit.cpp b/llvm/tools/llvm-mca/RetireControlUnit.cpp index 3a4319241fb..123058541f2 100644 --- a/llvm/tools/llvm-mca/RetireControlUnit.cpp +++ b/llvm/tools/llvm-mca/RetireControlUnit.cpp @@ -13,10 +13,7 @@ //===----------------------------------------------------------------------===// #include "RetireControlUnit.h" - -#ifndef NDEBUG #include "llvm/Support/Debug.h" -#endif using namespace llvm; diff --git a/llvm/tools/llvm-mca/Scheduler.cpp b/llvm/tools/llvm-mca/Scheduler.cpp index 5ed8ff0be15..f79eda7a545 100644 --- a/llvm/tools/llvm-mca/Scheduler.cpp +++ b/llvm/tools/llvm-mca/Scheduler.cpp @@ -13,10 +13,8 @@ #include "Scheduler.h" #include "Support.h" -#ifndef NDEBUG #include "llvm/Support/Debug.h" #include "llvm/Support/raw_ostream.h" -#endif namespace mca { |