1# RUN: not llc -mtriple=aarch64-none-linux-gnu -run-pass none -o /dev/null %s 2>&1 | FileCheck %s 2 3--- | 4 5 define void @target_memoperands_error() { 6 ret void 7 } 8 9... 10--- 11name: target_memoperands_error 12body: | 13 bb.0: 14 15 %0:_(p0) = COPY $x0 16 ; 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_ReallyLR 19... 20