Commit ca871bf0 authored by jochen@chromium.org's avatar jochen@chromium.org

Remove unused color declarations in the a64 simulator

They're now all defined globally

BUG=none
R=svenpanne@chromium.org
LOG=n

Review URL: https://codereview.chromium.org/207723003

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@20144 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 863b5d30
...@@ -1158,14 +1158,6 @@ void Simulator::PrintProcessorState() { ...@@ -1158,14 +1158,6 @@ void Simulator::PrintProcessorState() {
void Simulator::PrintWrite(uint8_t* address, void Simulator::PrintWrite(uint8_t* address,
uint64_t value, uint64_t value,
unsigned num_bytes) { unsigned num_bytes) {
// Define some color codes to use for memory logging.
const char* const clr_normal = (FLAG_log_colour) ? ("\033[m")
: ("");
const char* const clr_memory_value = (FLAG_log_colour) ? ("\033[1;32m")
: ("");
const char* const clr_memory_address = (FLAG_log_colour) ? ("\033[32m")
: ("");
// The template is "# value -> address". The template is not directly used // The template is "# value -> address". The template is not directly used
// in the printf since compilers tend to struggle with the parametrized // in the printf since compilers tend to struggle with the parametrized
// width (%0*). // width (%0*).
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment