[llvm] 262a332 - [NFC] Updating an incorrect code comment

Chris Bieneman via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 19 10:36:03 PDT 2022


Author: Chris Bieneman
Date: 2022-10-19T12:34:56-05:00
New Revision: 262a3322b9e591101d8918950c607f031d4f3e86

URL: https://github.com/llvm/llvm-project/commit/262a3322b9e591101d8918950c607f031d4f3e86
DIFF: https://github.com/llvm/llvm-project/commit/262a3322b9e591101d8918950c607f031d4f3e86.diff

LOG: [NFC] Updating an incorrect code comment

This slipped in by accident.

Added: 
    

Modified: 
    llvm/include/llvm/BinaryFormat/DXContainer.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/BinaryFormat/DXContainer.h b/llvm/include/llvm/BinaryFormat/DXContainer.h
index f06515263f17a..ad921d62ae435 100644
--- a/llvm/include/llvm/BinaryFormat/DXContainer.h
+++ b/llvm/include/llvm/BinaryFormat/DXContainer.h
@@ -47,7 +47,7 @@ enum class HashFlags : uint32_t {
 };
 
 struct ShaderHash {
-  uint32_t Flags; // DxilShaderHashFlags
+  uint32_t Flags; // dxbc::HashFlags
   uint8_t Digest[16];
 
   void swapBytes() { sys::swapByteOrder(Flags); }


        


More information about the llvm-commits mailing list