Remove argument to fix build bot failure.
authorCraig Topper <craig.topper@gmail.com>
Mon, 6 Jan 2014 06:09:03 +0000 (06:09 +0000)
committerCraig Topper <craig.topper@gmail.com>
Mon, 6 Jan 2014 06:09:03 +0000 (06:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198587 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp

index 06bce465b5245aa6ba3de9d1b6032ae16302693d..a9f023616e24d317986605b5eda841ba62500fd9 100644 (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;