brintos

brintos / llvm-project-archived public Read only

0
0
Text · 746 B · 296713f Raw
28 lines · plain
1#RUN: not --crash llc -o - -global-isel -run-pass=none -verify-machineinstrs %s 2>&1 | FileCheck %s2# REQUIRES: aarch64-registered-target3--- |4  target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"5  target triple = "aarch64-unknown-unknown"6 7  define i32 @g_build_vector_trunc() {8    ret i32 09  }10 11...12---13name:            g_build_vector_trunc14legalized:       true15regBankSelected: false16selected:        false17tracksRegLiveness: true18registers:19  - { id: 0, class: _, preferred-register: '' }20liveins:21body:             |22  bb.0:23    ; CHECK: Bad machine code: G_BUILD_VECTOR_TRUNC source operand types are not larger than dest elt type24 25    %0(s32) = IMPLICIT_DEF26    %1:_(<2 x s32>) = G_BUILD_VECTOR_TRUNC %0, %027...28