brintos

brintos / llvm-project-archived public Read only

0
0
Text · 755 B · bbc10f2 Raw
18 lines · plain
1# REQUIRES: asserts2# RUN: not --crash llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 -run-pass=machine-cse -filetype=null %s 2>&1 | FileCheck -check-prefixes=ERR,ERR-LEGACY %s3# RUN: not --crash llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 -passes=machine-cse -filetype=null %s 2>&1 | FileCheck -check-prefixes=ERR,ERR-NPM %s4 5# ERR-LEGACY: MachineFunctionProperties required by Machine Common Subexpression Elimination pass are not met by function not_ssa.6# ERR-NPM: MachineFunctionProperties required by MachineCSEPass pass are not met by function not_ssa.7# ERR: Required properties: IsSSA8# ERR-NEXT: Current properties: NoPHIs9 10---11name: not_ssa12body: |13  bb.0:14    %0:sgpr_32 = S_MOV_B32 015    %0:sgpr_32 = S_MOV_B32 116    S_ENDPGM 0, implicit %017...18