[flang-commits] [clang] [flang] [clang][flang] Support -time in both clang and flang (PR #109165)

Tarun Prabhu via flang-commits flang-commits at lists.llvm.org
Mon Sep 23 08:42:29 PDT 2024


================
@@ -0,0 +1,24 @@
+// The -time option prints timing information for the various subcommands in a
+// format similar to that used by gcc. When compiling and linking, this will
+// include the time to call clang-${LLVM_VERSION_MAJOR} and the linker. Since
+// the name of the linker could vary across platforms, and name of the compiler
+// could be something different, just check that whatever is printed to stderr
+// looks like timing information.
+
+// RUN: %clang -time -c -O3 -o /dev/null %s 2>&1 \
----------------
tarunprabhu wrote:

Wouldn't this restrict this test to running only when that target has been enabled? Is there a way to set the target to some target that has been enabled in that build? I would like to avoid restricting where the test runs. Perhaps I am missing something.

https://github.com/llvm/llvm-project/pull/109165


More information about the flang-commits mailing list