1 ; RUN: llc -mtriple i686-gnu -filetype asm -o - %s 2>&1 | FileCheck %s
3 define void @test_L_ff() {
5 call void asm "", "L,~{dirflag},~{fpsr},~{flags}"(i32 255)
9 ; CHECK-NOT: error: invalid operand for inline asm constraint 'L'
11 define void @test_L_ffff() {
13 call void asm "", "L,~{dirflag},~{fpsr},~{flags}"(i32 65535)
17 ; CHECK-NOT: error: invalid operand for inline asm constraint 'L'
19 define void @test_M_1() {
21 call void asm "", "M,~{dirflag},~{fpsr},~{flags}"(i32 1)
25 ; CHECK-NOT: error: invalid operand for inline asm constraint 'M'
27 define void @test_O_64() {
29 call void asm "", "O,~{dirflag},~{fpsr},~{flags}"(i32 64)
33 ; CHECK-NOT: error: invalid operand for inline asm constraint 'O'