20 lines · plain
1# RUN: not llc -mtriple=aarch64-none-linux-gnu -run-pass none -o /dev/null %s 2>&1 | FileCheck %s2 3--- |4 5 define void @target_memoperands_error() {6 ret void7 }8 9...10---11name: target_memoperands_error12body: |13 bb.0:14 15 %0:_(p0) = COPY $x016 ; CHECK: [[@LINE+1]]:35: use of undefined target MMO flag 'aarch64-invalid'17 %1:_(s64) = G_LOAD %0(p0) :: ("aarch64-invalid" load 8)18 RET_ReallyLR19...20