I Added a triple flag for x86-evenDirective test.
[oota-llvm.git] / test / MC / X86 / intel-syntax-ptr-sized.s
1 // RUN: llvm-mc %s -triple=i686-pc-windows | FileCheck %s
2
3 .intel_syntax
4
5 push [eax]
6 // CHECK: pushl (%eax)
7 call [eax]
8 // CHECK: calll *(%eax)
9 jmp [eax]
10 // CHECK: jmpl *(%eax)
11
12 // mode switch
13 .code16
14
15 push [eax]
16 // CHECK: pushw (%eax)
17 call [eax]
18 // CHECK: callw *(%eax)
19 jmp [eax]
20 // CHECK: jmpw *(%eax)