From e801cc3ceb2045e989098262099b6232804081a9 Mon Sep 17 00:00:00 2001 From: ragusaa <54862477+ragusaa@users.noreply.github.com> Date: Fri, 2 Feb 2024 14:43:08 -0500 Subject: [PATCH] Update libclambcc/ClamBCRemoveFreezeInsts/ClamBCRemoveFreezeInsts.cpp Co-authored-by: Micah Snyder --- .../ClamBCRemoveFreezeInsts/ClamBCRemoveFreezeInsts.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libclambcc/ClamBCRemoveFreezeInsts/ClamBCRemoveFreezeInsts.cpp b/libclambcc/ClamBCRemoveFreezeInsts/ClamBCRemoveFreezeInsts.cpp index 1d3607570a..a58b2516c9 100644 --- a/libclambcc/ClamBCRemoveFreezeInsts/ClamBCRemoveFreezeInsts.cpp +++ b/libclambcc/ClamBCRemoveFreezeInsts/ClamBCRemoveFreezeInsts.cpp @@ -38,10 +38,10 @@ using namespace std; namespace { /* - * Freeze Instructions are to guarantee sane behaviour in the case of undefs or poison values. The interpreter - * has no notion of freeze instructions, so we are removing them. The verifier will fail if there are undef or - * poison values in the IR, so this is safe to do. - */ + * Freeze Instructions are to guarantee sane behaviour in the case of undefs or poison values. The interpreter + * has no notion of freeze instructions, so we are removing them. The verifier will fail if there are undef or + * poison values in the IR, so this is safe to do. + */ struct ClamBCRemoveFreezeInsts : public PassInfoMixin { protected: Module *pMod = nullptr;