[PATCH] D141759: [7/15][Clang][RISCV][NFC] Correct the default value for Policy to TAMU
Yueh-Ting (eop) Chen via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jan 24 01:21:12 PST 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG2a16e1ff7d27: [7/15][Clang][RISCV][NFC] Correct the default value for Policy to TAMU (authored by eopXD).
Changed prior to commit:
https://reviews.llvm.org/D141759?vs=489302&id=491657#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D141759/new/
https://reviews.llvm.org/D141759
Files:
clang/include/clang/Support/RISCVVIntrinsicUtils.h
Index: clang/include/clang/Support/RISCVVIntrinsicUtils.h
===================================================================
--- clang/include/clang/Support/RISCVVIntrinsicUtils.h
+++ clang/include/clang/Support/RISCVVIntrinsicUtils.h
@@ -99,8 +99,8 @@
Agnostic,
Omit, // No policy required.
};
- PolicyType TailPolicy = Omit;
- PolicyType MaskPolicy = Omit;
+ PolicyType TailPolicy = Agnostic;
+ PolicyType MaskPolicy = Undisturbed;
bool HasTailPolicy, HasMaskPolicy;
Policy(bool HasTailPolicy, bool HasMaskPolicy)
: IsUnspecified(true), HasTailPolicy(HasTailPolicy),
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D141759.491657.patch
Type: text/x-patch
Size: 600 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230124/c9514a1b/attachment.bin>
More information about the cfe-commits
mailing list