Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / X86 / inline-asm-e-constraint.ll
blob3b5937f73f3fbe8d27171cee111feeeeda94fe4a
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}"(ptr @pr40890.s)
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