[llvm-commits] [llvm] r115466 - in /llvm/trunk: lib/Target/X86/X86Instr3DNow.td lib/Target/X86/X86InstrFormats.td lib/Target/X86/X86InstrInfo.h lib/Target/X86/X86InstrInfo.td lib/Target/X86/X86MCCodeEmitter.cpp test/MC/X86/3DNow.s

Chris Lattner sabre at nondot.org
Sun Oct 3 14:46:41 PDT 2010


On Oct 3, 2010, at 12:34 PM, Bill Wendling wrote:

> On Oct 3, 2010, at 11:08 AM, Chris Lattner wrote:
> 
>> Author: lattner
>> Date: Sun Oct  3 13:08:05 2010
>> New Revision: 115466
>> 
>> Added: llvm/trunk/test/MC/X86/3DNow.s
>> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/X86/3DNow.s?rev=115466&view=auto
>> ==============================================================================
>> --- llvm/trunk/test/MC/X86/3DNow.s (added)
>> +++ llvm/trunk/test/MC/X86/3DNow.s Sun Oct  3 13:08:05 2010
>> @@ -0,0 +1,11 @@
>> +// RUN: llvm-mc -triple i386-unknown-unknown --show-encoding %s | FileCheck %s
>> +
>> +// PR8283
>> +
>> +// CHECK: pavgusb %mm2, %mm1  # encoding: [0x0f,0x0f,0xca,0xbf]
>> +pavgusb	%mm2, %mm1
>> +
>> +// CHECK: pavgusb 9(%esi,%edx), %mm3 # encoding: [0x0f,0x0f,0x5c,0x16,0x09,0
> 
> Did some of the encoding get chopped off here?

Yep, I fixed this in the subsequent commit.

-Chris



More information about the llvm-commits mailing list