brintos

brintos / llvm-project-archived public Read only

0
0
Text · 368 B · e6a99dd Raw
10 lines · plain
1; Test that comment token for objc retain release is upgraded from '#' to ';'2;3; RUN: llvm-dis < %s.bc | FileCheck %s4 5define void @inlineasm() {6  call void asm sideeffect "mov\09fp, fp\09\09# marker for objc_retainAutoreleaseReturnValue", ""()7  ;CHECK: call void asm sideeffect "mov\09fp, fp\09\09; marker for objc_retainAutoreleaseReturnValue", ""()8  ret void9}10