Mercurial > hg > CbC > CbC_llvm
view test/Assembler/getelementptr_vec_idx1.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 index is only used with a vector pointer. ; CHECK: getelementptr index type missmatch define i32 @test(i32* %a) { %w = getelementptr i32* %a, <2 x i32> <i32 5, i32 9> ret i32 %w }