[flang] Fix buildbot failure after #152914 (#153578)

Buildbot failure:
https://lab.llvm.org/buildbot/#/builders/201/builds/5894
This commit is contained in:
parabola94 2025-08-14 23:31:28 +09:00 committed by GitHub
parent 9ddc85f6d5
commit 23d0cc7ab3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,17 +1,9 @@
// REQUIRES: clang
// UNSUPPORTED: system-windows
// RUN: rm -rf %t && mkdir %t
// RUN: %clangxx %isysroot -I%flang_include %s -o %t/a.out
// RUN: %t/a.out | FileCheck %s
// RUN: %clang_cc1 -fsyntax-only -I%flang_include %s -x c++
extern "C" {
#include "ISO_Fortran_binding.h"
}
#include <iostream>
int main() {
std::cout << "PASS\n";
return 0;
}
// CHECK: PASS
int main() { return 0; }