diff options
author | Jay Foad <jay.foad@amd.com> | 2025-07-15 15:44:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-15 15:44:50 +0100 |
commit | 2463309c4d0d95d6947faa54733788fb1f1162ae (patch) | |
tree | fec3385ced6fe3f219343e47f16d2ce2b94ba6fb /llvm/lib/CodeGen/MachineSink.cpp | |
parent | 6291b63a9a104fe93f8e4e279ef2237dc081304f (diff) | |
download | llvm-2463309c4d0d95d6947faa54733788fb1f1162ae.zip llvm-2463309c4d0d95d6947faa54733788fb1f1162ae.tar.gz llvm-2463309c4d0d95d6947faa54733788fb1f1162ae.tar.bz2 |
[CodeGen] Use setNoVRegs. NFC. (#148831)
Diffstat (limited to 'llvm/lib/CodeGen/MachineSink.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineSink.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineSink.cpp b/llvm/lib/CodeGen/MachineSink.cpp index a0e067a..9ec5151 100644 --- a/llvm/lib/CodeGen/MachineSink.cpp +++ b/llvm/lib/CodeGen/MachineSink.cpp @@ -2102,8 +2102,7 @@ public: } MachineFunctionProperties getRequiredProperties() const override { - return MachineFunctionProperties().set( - MachineFunctionProperties::Property::NoVRegs); + return MachineFunctionProperties().setNoVRegs(); } }; |