[libc++] Simplify the implementation of iostream.cpp (#124103)
[llvm-project.git] / llvm / test / Assembler / c-style-comment.ll
blob9cc17ad90d0bc2ed79c48263a3f288641040121d
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
10  * and this is third
11  */
14 ; CHECK: @foo
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 */