[flang-commits] [flang] [flang] GETGID runtime and lowering intrinsics (PR #71553)
David Truby via flang-commits
flang-commits at lists.llvm.org
Thu Nov 9 09:10:19 PST 2023
================
@@ -44,3 +44,10 @@ TEST_F(RuntimeCallTest, genGetEnvVariable) {
checkCallOp(result.getDefiningOp(), "_FortranAGetEnvVariable", /*nbArgs=*/5,
/*addLocArgs=*/true);
}
+
+TEST_F(RuntimeCallTest, genGetGID) {
+ mlir::Location loc = firBuilder->getUnknownLoc();
+ mlir::Value result = fir::runtime::genGetGID(*firBuilder, loc);
+ checkCallOp(result.getDefiningOp(), "_FortranAGetGID", /*nbArgs=*/0,
+ /*addLocArgs=*/false);
+}
----------------
DavidTruby wrote:
nit: add missing newline at the end of this file
https://github.com/llvm/llvm-project/pull/71553
More information about the flang-commits
mailing list