r600/sfn: Use the correct allocator for loop lists

This fixes a memory leak.

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18983>
This commit is contained in:
Gert Wollny 2022-09-28 14:52:15 +02:00
parent 4b7ae72c46
commit 04aea1c0ba

View file

@ -382,7 +382,7 @@ private:
};
InstructionChain m_chain_instr;
std::vector<Instr *> m_loops;
std::list<Instr *, Allocator<Instr *>> m_loops;
};