[clang] [flang] [flang] Add -mlink-builtin-bitcode option to fc1 (PR #94763)

Jan Leyonberg via cfe-commits cfe-commits at lists.llvm.org
Wed Jun 12 06:59:22 PDT 2024


================
@@ -0,0 +1,15 @@
+! Test -mlink-builtin-bitcode flag
+! RUN: %flang -emit-llvm -c -o %t.bc %S/Inputs/libfun.f90
+! RUN: %flang_fc1 -emit-llvm -o - -mlink-builtin-bitcode %t.bc %s 2>&1 | FileCheck %s
+
+! CHECK: define internal void @libfun_
+
+! RUN: not %flang_fc1 -emit-llvm -triple x86_64-unknown-linux-gnu -o - -mlink-builtin-bitcode %no-%t.bc %s 2>&1 | FileCheck %s --check-prefix=ERROR
----------------
jsjodin wrote:

Yes, I forgot to remove this when I fixed the tests. Thanks for finding it.

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


More information about the cfe-commits mailing list