reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
# RUN: llvm-mc -filetype=obj -triple riscv32 -mattr=+c < %s \
# RUN:     | llvm-objdump -d -M no-aliases  - | FileCheck -check-prefix=CHECK-INST %s

# alpha and main are 8 byte alignment
# but the alpha function's size is 6
# So assembler will insert a c.nop to make sure 8 byte alignment.

        .text
       .p2align        3
       .type   alpha,@function
alpha:
# BB#0:
       c.addi  sp, -16
       c.lw    a0, 0(a0)
       c.lw    a1, 4(a0)
# CHECK-INST: c.nop
.Lfunc_end0:
       .size   alpha, .Lfunc_end0-alpha
                                        # -- End function
       .globl  main
       .p2align        3
       .type   main,@function
main:                                   # @main
# BB#0:
.Lfunc_end1:
       .size   main, .Lfunc_end1-main
                                        # -- End function