Use Align for TFL::TransientStackAlignment
[llvm-core.git] / test / CodeGen / X86 / inline-asm-e-constraint.ll
blobfd10ba424081d87ff5baaf7722f1f65d5f6dfa02
1 ; RUN: not llc -mtriple=x86_64-unknown-unknown -no-integrated-as < %s 2>&1 | FileCheck %s
3 %struct.s = type { i32, i32 }
5 @pr40890.s = internal global %struct.s zeroinitializer, align 4
7 ; CHECK: error: invalid operand for inline asm constraint 'e'
8 ; CHECK: error: invalid operand for inline asm constraint 'e'
10 define void @pr40890() {
11 entry:
12   ; This pointer cannot be used as an integer constant expression.
13   tail call void asm sideeffect "\0A#define GLOBAL_A abcd$0\0A", "e,~{dirflag},~{fpsr},~{flags}"(i32* getelementptr inbounds (%struct.s, %struct.s* @pr40890.s, i64 0, i32 0))
14   ; Floating-point is also not okay.
15   tail call void asm sideeffect "\0A#define PI abcd$0\0A", "e,~{dirflag},~{fpsr},~{flags}"(float 0x40091EB860000000)
16   ret void