1 ; RUN: llvm-as < %s | llvm-dis | FileCheck %s
3 /* Simple C style comment */
5 ; CHECK: @B = external global i32
6 @B = external global i32
8 /* multiline C ctyle comment at "top-level"
9 * This is the second line
15 define <4 x i1> @foo(<4 x float> %a, <4 x float> %b) nounwind {
16 entry: /* inline comment */
17 %cmp = fcmp olt <4 x float> %a, /* to be ignored */ %b
18 ret <4 x i1> %cmp /* ignore */
21 /* End of the assembly file */