mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-01 13:20:25 +00:00
1c3a07834e
Older compiler issued '#' instead of ';' llvm-svn: 330173
10 lines
368 B
LLVM
10 lines
368 B
LLVM
; 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
|
|
}
|