diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/nonconst-static-iv.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/nonconst-static-iv.ll | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/nonconst-static-iv.ll b/llvm/test/CodeGen/X86/nonconst-static-iv.ll new file mode 100644 index 00000000000..8fad39bcbf7 --- /dev/null +++ b/llvm/test/CodeGen/X86/nonconst-static-iv.ll @@ -0,0 +1,9 @@ +; RUN: not llc -march=x86 -mtriple=x86_64-linux-gnu < %s 2> %t +; RUN: FileCheck --check-prefix=CHECK-ERRORS < %t %s +; REQUIRES: shell + +@0 = global i8 insertvalue( { i8 } select (i1 ptrtoint (i32* @1 to i1), { i8 } { i8 1 }, { i8 } { i8 2 }), i8 0, 0) +@1 = external global i32 + +; CHECK-ERRORS: Unsupported expression in static initializer: insertvalue + |