X87: [turbofan] Add comments to CodeAssembler.

port 40b5c1d41f7da58411d5538f26cc736d2f40abe0(r36842)

  original commit message:

BUG=

Review-Url: https://codereview.chromium.org/2080873003
Cr-Commit-Position: refs/heads/master@{#37124}
This commit is contained in:
zhengxing.li 2016-06-20 22:56:00 -07:00 committed by Commit bot
parent eef939b4aa
commit 2c70addcf2

View File

@ -606,6 +606,11 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction(
case kArchTableSwitch:
AssembleArchTableSwitch(instr);
break;
case kArchComment: {
Address comment_string = i.InputExternalReference(0).address();
__ RecordComment(reinterpret_cast<const char*>(comment_string));
break;
}
case kArchDebugBreak:
__ int3();
break;