diff options
| author | 2020-07-18 16:39:11 +0000 | |
|---|---|---|
| committer | 2020-07-18 16:39:11 +0000 | |
| commit | 0b007d6ea01c7ff75d5a7016fee5625df5e879b0 (patch) | |
| tree | 6df19f94d6c09c4e8182d9d03182e7f05f2034a8 | |
| parent | We can now use installboot directly, rather than using mounting the msdos (diff) | |
| download | wireguard-openbsd-0b007d6ea01c7ff75d5a7016fee5625df5e879b0.tar.xz wireguard-openbsd-0b007d6ea01c7ff75d5a7016fee5625df5e879b0.zip | |
int64_t and intmax_t are always (signed) long long on OpenBSD.
ok deraadt@
| -rw-r--r-- | gnu/llvm/tools/clang/lib/Basic/Targets/OSTargets.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/llvm/tools/clang/lib/Basic/Targets/OSTargets.h b/gnu/llvm/tools/clang/lib/Basic/Targets/OSTargets.h index 8c1151436a6..7ed06a4c5f6 100644 --- a/gnu/llvm/tools/clang/lib/Basic/Targets/OSTargets.h +++ b/gnu/llvm/tools/clang/lib/Basic/Targets/OSTargets.h @@ -435,6 +435,8 @@ protected: public: OpenBSDTargetInfo(const llvm::Triple &Triple, const TargetOptions &Opts) : OSTargetInfo<Target>(Triple, Opts) { + this->IntMaxType = TargetInfo::SignedLongLong; + this->Int64Type = TargetInfo::SignedLongLong; switch (Triple.getArch()) { case llvm::Triple::x86: case llvm::Triple::x86_64: |
