From 670fc52f1812727457eaf6cb4fca1a520a6a8c20 Mon Sep 17 00:00:00 2001 From: Andreas Sandberg Date: Mon, 25 Mar 2013 13:20:15 +0100 Subject: [PATCH] x86: Revert [02321b16685f] which breaks m5ops on x86 Changeset 02321b16685f added m5_writefile to m5op_x86.S a second time, which causes a compilation error on when compiling for x86. This changeset reverts that changeset and fixes the error. --- util/m5/m5op_x86.S | 1 - 1 file changed, 1 deletion(-) diff --git a/util/m5/m5op_x86.S b/util/m5/m5op_x86.S index 2f93dbcda..2c25785e6 100644 --- a/util/m5/m5op_x86.S +++ b/util/m5/m5op_x86.S @@ -55,7 +55,6 @@ TWO_BYTE_OP(m5_reset_stats, resetstats_func) TWO_BYTE_OP(m5_dump_stats, dumpstats_func) TWO_BYTE_OP(m5_dumpreset_stats, dumprststats_func) TWO_BYTE_OP(m5_checkpoint, ckpt_func) -TWO_BYTE_OP(m5_writefile, writefile_func) TWO_BYTE_OP(m5_readfile, readfile_func) TWO_BYTE_OP(m5_writefile, writefile_func) TWO_BYTE_OP(m5_debugbreak, debugbreak_func)