brintos

brintos / llvm-project-archived public Read only

0
0
Text · 668 B · 6214d89 Raw
21 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --check-globals2; RUN: opt -S -passes=globalopt < %s | FileCheck %s3 4; Check that we don't crash on vector GEP indices.5 6@a = internal global [2 x i16] zeroinitializer, align 17 8;.9; CHECK: @[[A:[a-zA-Z0-9_$"\\.-]+]] = internal unnamed_addr global [2 x i16] zeroinitializer, align 110;.11define void @f1() {12; CHECK-LABEL: @f1(13; CHECK-NEXT:  entry:14; CHECK-NEXT:    [[GEP:%.*]] = getelementptr inbounds [2 x i16], ptr @a, i32 0, <2 x i32> <i32 0, i32 1>15; CHECK-NEXT:    ret void16;17entry:18  %gep = getelementptr inbounds [2 x i16], ptr @a, i32 0, <2 x i32> <i32 0, i32 1>19  ret void20}21