view test/Assembler/getelementptr_vec_idx2.ll @ 52:c22698ecb2a9

modified CreateIdentifierInfo and create new function which was named 'CreateUniqueIdentifierInfo'.
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Wed, 15 Jan 2014 21:01:33 +0900
parents 95c75e76d11b
children afa8332a0e37
line wrap: on
line source

; 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
}