File tree Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -1239,6 +1239,11 @@ AIX Support
12391239 This access sequence is not used for TLS variables larger than 32KB, and is
12401240 currently only supported on 64-bit mode.
12411241
1242+ NetBSD Support
1243+ ^^^^^^^^^^^^^^
1244+
1245+ - Removed support for building binaries for NetBSD 6.x or older.
1246+
12421247WebAssembly Support
12431248^^^^^^^^^^^^^^^^^^^
12441249
Original file line number Diff line number Diff line change @@ -513,15 +513,6 @@ class LLVM_LIBRARY_VISIBILITY NetBSDI386TargetInfo
513513public:
514514 NetBSDI386TargetInfo (const llvm::Triple &Triple, const TargetOptions &Opts)
515515 : NetBSDTargetInfo<X86_32TargetInfo>(Triple, Opts) {}
516-
517- LangOptions::FPEvalMethodKind getFPEvalMethod () const override {
518- VersionTuple OsVersion = getTriple ().getOSVersion ();
519- // New NetBSD uses the default rounding mode.
520- if (OsVersion >= VersionTuple (6 , 99 , 26 ) || OsVersion.getMajor () == 0 )
521- return X86_32TargetInfo::getFPEvalMethod ();
522- // NetBSD before 6.99.26 defaults to "double" rounding.
523- return LangOptions::FPEvalMethodKind::FEM_Double;
524- }
525516};
526517
527518class LLVM_LIBRARY_VISIBILITY OpenBSDI386TargetInfo
You can’t perform that action at this time.
0 commit comments