Home | History | Annotate | Download | only in ARM
      1 @ RUN: llvm-mc -triple arm-elf -filetype asm -o - %s | FileCheck %s
      2 
      3 	.syntax unified
      4 
      5 	.type TYPE #STT_FUNC
      6 // CHECK: .type TYPE,%function
      7 
      8 	.type type #function
      9 // CHECK: .type type,%function
     10 
     11 	.type comma_TYPE, #STT_FUNC
     12 // CHECK: .type comma_TYPE,%function
     13 
     14 	.type comma_type, #function
     15 // CHECK: .type comma_type,%function
     16 
     17