Skip to content

Commit

Permalink
[flang] Keep ifdef macro for INT128
Browse files Browse the repository at this point in the history
This was wrongly removed in 9aeb7f0
and makes buildbot fail.
  • Loading branch information
clementval committed Mar 16, 2022
1 parent 7c285b7 commit 24f3d55
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions flang/lib/Lower/IO.cpp
Expand Up @@ -420,8 +420,10 @@ static mlir::FuncOp getOutputFunc(mlir::Location loc,
return getIORuntimeFunc<mkIOKey(OutputInteger32)>(loc, builder);
case 64:
return getIORuntimeFunc<mkIOKey(OutputInteger64)>(loc, builder);
#ifdef __SIZEOF_INT128__
case 128:
return getIORuntimeFunc<mkIOKey(OutputInteger128)>(loc, builder);
#endif
}
llvm_unreachable("unknown OutputInteger kind");
}
Expand Down

0 comments on commit 24f3d55

Please sign in to comment.