Skip to content

Commit 23d0cc7

Browse files
authored
[flang] Fix buildbot failure after #152914 (#153578)
Buildbot failure: https://lab.llvm.org/buildbot/#/builders/201/builds/5894
1 parent 9ddc85f commit 23d0cc7

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed
Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,9 @@
11
// REQUIRES: clang
22
// UNSUPPORTED: system-windows
3-
// RUN: rm -rf %t && mkdir %t
4-
// RUN: %clangxx %isysroot -I%flang_include %s -o %t/a.out
5-
// RUN: %t/a.out | FileCheck %s
3+
// RUN: %clang_cc1 -fsyntax-only -I%flang_include %s -x c++
64

75
extern "C" {
86
#include "ISO_Fortran_binding.h"
97
}
10-
#include <iostream>
118

12-
int main() {
13-
std::cout << "PASS\n";
14-
return 0;
15-
}
16-
17-
// CHECK: PASS
9+
int main() { return 0; }

0 commit comments

Comments
 (0)