diff --git a/indra/newview/llskinningutil.cpp b/indra/newview/llskinningutil.cpp
index 1f39097a98c36c4718ad5792cc50d8fea8e9852a..2f3b542fa869334e1b1925b61c67ebfd600ec148 100644
--- a/indra/newview/llskinningutil.cpp
+++ b/indra/newview/llskinningutil.cpp
@@ -245,10 +245,10 @@ void LLSkinningUtil::updateRiggingInfo(const LLMeshSkinInfo* skin, LLVOAvatar *a
                     LLVector4 wght;
                     S32 idx[4];
                     F32 scale = 0.0f;
+                    // AXON unpacking of weights should be pulled into a common function and optimized if possible.
                     for (U32 k = 0; k < 4; k++)
                     {
                         F32 w = weights[k];
-                        
                         idx[k] = llclamp((S32) floorf(w), (S32)0, (S32)LL_CHARACTER_MAX_ANIMATED_JOINTS-1);
                         wght[k] = w - idx[k];
                         scale += wght[k];
@@ -269,8 +269,6 @@ void LLSkinningUtil::updateRiggingInfo(const LLMeshSkinInfo* skin, LLVOAvatar *a
                             if (joint_num >= 0 && joint_num < LL_CHARACTER_MAX_ANIMATED_JOINTS)
                             {
                                 rig_info_tab[joint_num].setIsRiggedTo(true);
-                                //active_joints.insert(joint_num);
-                                //active_verts++;
 
                                 // AXON can precompute these matMuls.
                                 LLMatrix4a bind_shape;
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp
index 6bcbebb546b403857aea7073fea94eb5b2550b59..61d82ec1cf266e3a2889a1f14637ade6f6198a1c 100644
--- a/indra/newview/llvovolume.cpp
+++ b/indra/newview/llvovolume.cpp
@@ -108,10 +108,6 @@ static LLTrace::BlockTimerStatHandle FTM_VOLUME_TEXTURES("Volume Textures");
 
 extern BOOL gGLDebugLoggingEnabled;
 
-#if LL_MSVC
-#pragma optimize("", off)
-#endif
-
 // Implementation class of LLMediaDataClientObject.  See llmediadataclient.h
 class LLMediaDataClientObjectImpl : public LLMediaDataClientObject
 {