aboutsummaryrefslogtreecommitdiffstats
path: root/test/Assembler/insertvalue-invalid-type-1.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Assembler/insertvalue-invalid-type-1.ll')
-rw-r--r--test/Assembler/insertvalue-invalid-type-1.ll7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Assembler/insertvalue-invalid-type-1.ll b/test/Assembler/insertvalue-invalid-type-1.ll
new file mode 100644
index 0000000..de9b782
--- /dev/null
+++ b/test/Assembler/insertvalue-invalid-type-1.ll
@@ -0,0 +1,7 @@
+; RUN: not llvm-as < %s 2>&1 | FileCheck %s
+
+; CHECK: insertvalue operand and field disagree in type: 'i32' instead of 'i64'
+
+define <{ i32 }> @test() {
+ ret <{ i32 }> insertvalue (<{ i64 }> zeroinitializer, i32 4, 0)
+}