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.
10 lines
368 B
10 lines
368 B
; Test that comment token for objc retain release is upgraded from '#' to ';'
|
|
;
|
|
; RUN: llvm-dis < %s.bc | FileCheck %s
|
|
|
|
define void @inlineasm() {
|
|
call void asm sideeffect "mov\09fp, fp\09\09# marker for objc_retainAutoreleaseReturnValue", ""()
|
|
;CHECK: call void asm sideeffect "mov\09fp, fp\09\09; marker for objc_retainAutoreleaseReturnValue", ""()
|
|
ret void
|
|
}
|