mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
8 lines
221 B
LLVM
8 lines
221 B
LLVM
|
; 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)
|
||
|
}
|