Remove argument to fix build bot failure.

llvm-svn: 198587
This commit is contained in:
Craig Topper 2014-01-06 06:09:03 +00:00
parent 7ceb54a2a1
commit 78e58b28a5
1 changed files with 1 additions and 1 deletions

View File

@ -1191,7 +1191,7 @@ void X86MCCodeEmitter::EmitOpcodePrefix(uint64_t TSFlags, unsigned &CurByte,
EmitByte(0x67, CurByte, OS);
// Emit the operand size opcode prefix as needed.
if (TSFlags & (is16BitMode(Features) ? X86II::OpSize16 : X86II::OpSize))
if (TSFlags & (is16BitMode() ? X86II::OpSize16 : X86II::OpSize))
EmitByte(0x66, CurByte, OS);
bool Need0FPrefix = false;