[PATCH] D113776: [Clang][SVE] Properly enable/disable dependant SVE target features based upon +(no)sve.* options
Thorsten via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Nov 12 08:42:47 PST 2021
tschuett added inline comments.
================
Comment at: clang/lib/Driver/ToolChains/Arch/AArch64.cpp:66
+typedef enum { Unset, True, False } OptState;
+bool isUnset(OptState State) { return State == OptState::Unset; }
----------------
This is almost an enum class.
```
enum class OptState { Unset, True, False };
```
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D113776/new/
https://reviews.llvm.org/D113776
More information about the cfe-commits
mailing list