brintos

brintos / llvm-project-archived public Read only

0
0
Text · 466 B · 9cc17ad Raw
23 lines · plain
1; RUN: llvm-as < %s | llvm-dis | FileCheck %s2 3/* Simple C style comment */4 5; CHECK: @B = external global i326@B = external global i327 8/* multiline C ctyle comment at "top-level"9 * This is the second line10 * and this is third11 */12 13 14; CHECK: @foo15define <4 x i1> @foo(<4 x float> %a, <4 x float> %b) nounwind {16entry: /* inline comment */17  %cmp = fcmp olt <4 x float> %a, /* to be ignored */ %b18  ret <4 x i1> %cmp /* ignore */19}20 21/* End of the assembly file */22 23