You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# RUN: llvm-mc -triple=hexagon -filetype=obj %s -o - | llvm-objdump -d - | FileCheck %s
|
|
|
|
# Verify that jump encodes correctly
|
|
|
|
|
|
mylabel:
|
|
# CHECK: if (p0) jump
|
|
if (p0) jump ##mylabel
|
|
|
|
# CHECK: if (cmp.gtu(r5.new, r4)) jump:t
|
|
{ r5 = r4
|
|
if (cmp.gtu(r5.new, r4)) jump:t ##mylabel }
|
|
|