1*9880d681SAndroid Build Coastguard Worker# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=generic %s | llvm-objdump -d - | FileCheck %s 2*9880d681SAndroid Build Coastguard Worker# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=i386 %s | llvm-objdump -d - | FileCheck %s 3*9880d681SAndroid Build Coastguard Worker# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=i486 %s | llvm-objdump -d - | FileCheck %s 4*9880d681SAndroid Build Coastguard Worker# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=i586 %s | llvm-objdump -d - | FileCheck %s 5*9880d681SAndroid Build Coastguard Worker# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=pentium %s | llvm-objdump -d - | FileCheck %s 6*9880d681SAndroid Build Coastguard Worker# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=pentium-mmx %s | llvm-objdump -d - | FileCheck %s 7*9880d681SAndroid Build Coastguard Worker# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=geode %s | llvm-objdump -d - | FileCheck %s 8*9880d681SAndroid Build Coastguard Worker# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=i686 %s | llvm-objdump -d - | FileCheck %s 9*9880d681SAndroid Build Coastguard Worker# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=k6 %s | llvm-objdump -d - | FileCheck %s 10*9880d681SAndroid Build Coastguard Worker# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=k6-2 %s | llvm-objdump -d - | FileCheck %s 11*9880d681SAndroid Build Coastguard Worker# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=k6-3 %s | llvm-objdump -d - | FileCheck %s 12*9880d681SAndroid Build Coastguard Worker# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=winchip-c6 %s | llvm-objdump -d - | FileCheck %s 13*9880d681SAndroid Build Coastguard Worker# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=winchip2 %s | llvm-objdump -d - | FileCheck %s 14*9880d681SAndroid Build Coastguard Worker# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=c3 %s | llvm-objdump -d - | FileCheck %s 15*9880d681SAndroid Build Coastguard Worker# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=c3-2 %s | llvm-objdump -d - | FileCheck %s 16*9880d681SAndroid Build Coastguard Worker# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=core2 %s | llvm-objdump -d - | FileCheck --check-prefix=NOPL %s 17*9880d681SAndroid Build Coastguard Worker# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=slm %s | llvm-objdump -d - | FileCheck --check-prefix=NOPL %s 18*9880d681SAndroid Build Coastguard Worker 19*9880d681SAndroid Build Coastguard Worker 20*9880d681SAndroid Build Coastguard Workerinc %eax 21*9880d681SAndroid Build Coastguard Worker.align 8 22*9880d681SAndroid Build Coastguard Workerinc %eax 23*9880d681SAndroid Build Coastguard Worker 24*9880d681SAndroid Build Coastguard Worker// CHECK: 0: 40 incl %eax 25*9880d681SAndroid Build Coastguard Worker// CHECK: 1: 90 nop 26*9880d681SAndroid Build Coastguard Worker// CHECK: 2: 90 nop 27*9880d681SAndroid Build Coastguard Worker// CHECK: 3: 90 nop 28*9880d681SAndroid Build Coastguard Worker// CHECK: 4: 90 nop 29*9880d681SAndroid Build Coastguard Worker// CHECK: 5: 90 nop 30*9880d681SAndroid Build Coastguard Worker// CHECK: 6: 90 nop 31*9880d681SAndroid Build Coastguard Worker// CHECK: 7: 90 nop 32*9880d681SAndroid Build Coastguard Worker// CHECK: 8: 40 incl %eax 33*9880d681SAndroid Build Coastguard Worker 34*9880d681SAndroid Build Coastguard Worker 35*9880d681SAndroid Build Coastguard Worker// NOPL: 0: 40 incl %eax 36*9880d681SAndroid Build Coastguard Worker// NOPL: 1: 0f 1f 80 00 00 00 00 nopl (%eax) 37*9880d681SAndroid Build Coastguard Worker// NOPL: 8: 40 incl %eax 38