mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
11 lines
278 B
LLVM
11 lines
278 B
LLVM
|
; RUN: not llvm-as < %s >/dev/null 2> %t
|
||
|
; RUN: FileCheck %s < %t
|
||
|
; Test that a vector pointer is only used with a vector index.
|
||
|
|
||
|
; CHECK: getelementptr index type missmatch
|
||
|
|
||
|
define <2 x i32> @test(<2 x i32*> %a) {
|
||
|
%w = getelementptr <2 x i32*> %a, i32 2
|
||
|
ret <2 x i32> %w
|
||
|
}
|