brintos

brintos / llvm-project-archived public Read only

0
0
Text · 397 B · 559fa31 Raw
15 lines · plain
1# RUN: not llc -o /dev/null %s -mtriple=x86_64 -run-pass none 2>&1 | FileCheck %s2# This test ensures that an error is reported for specifying the register class3# of a physical register.4--- |5  define void @t() { ret void }6...7---8name: t9body: |10  bb.0:11    %0 : gr32 = COPY $rdx12    ; CHECK: [[@LINE+1]]:24: conflicting register classes, previously: GR3213    NOOP implicit %0 : gr32_abcd14...15