[flang] Fixup 7ddbf2633911a5c378ad6af01e250f6f252b9032
authorDiana Picus <diana.picus@linaro.org>
Wed, 16 Jun 2021 09:41:11 +0000 (09:41 +0000)
committerDiana Picus <diana.picus@linaro.org>
Wed, 16 Jun 2021 09:43:07 +0000 (09:43 +0000)
Replace C++ comments with C-style comments (not sure why my C compiler
doesn't complain about this).

flang/test/Runtime/no-cpp-dep.c

index 1199f76..a35a52d 100644 (file)
@@ -1,16 +1,20 @@
-// This test makes sure that flang's runtime does not depend on the C++ runtime
-// library. It tries to link this simple file against libFortranRuntime.a with
-// a C compiler.
-//
-// REQUIRES: c-compiler
-//
-// RUN: %cc -std=c90 %s -I%runtimeincludes %libruntime -o /dev/null
+/*
+This test makes sure that flang's runtime does not depend on the C++ runtime
+library. It tries to link this simple file against libFortranRuntime.a with
+a C compiler.
+
+REQUIRES: c-compiler
+
+RUN: %cc -std=c90 %s -I%runtimeincludes %libruntime -o /dev/null
+*/
 
 #include "entry-names.h"
 
-// Manually add declarations for the runtime functions that we want to make sure
-// we're testing. We can't include any headers directly since they likely
-// contain C++ code that would explode here.
+/*
+Manually add declarations for the runtime functions that we want to make sure
+we're testing. We can't include any headers directly since they likely contain
+C++ code that would explode here.
+*/
 double RTNAME(CpuTime)();
 
 int main() {