[llvm] deac021 - [CodeGen] Remove extraneous spaces at start of line in TargetOpcodes.def. NFC

Luke Lau via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 22 04:43:58 PDT 2023


Author: Luke Lau
Date: 2023-09-22T12:43:42+01:00
New Revision: deac0217a1718bb2a56eb6729eab35d922481c2c

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

LOG: [CodeGen] Remove extraneous spaces at start of line in TargetOpcodes.def. NFC

Added: 
    

Modified: 
    llvm/include/llvm/Support/TargetOpcodes.def

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/Support/TargetOpcodes.def b/llvm/include/llvm/Support/TargetOpcodes.def
index e02b1a1d01cfec0..a60d80319222b0a 100644
--- a/llvm/include/llvm/Support/TargetOpcodes.def
+++ b/llvm/include/llvm/Support/TargetOpcodes.def
@@ -72,7 +72,7 @@ HANDLE_TARGET_OPCODE(SUBREG_TO_REG)
 /// virtual registers have been created for all the instructions, and it's
 /// only needed in cases where the register classes implied by the
 /// instructions are insufficient. It is emitted as a COPY MachineInstr.
-  HANDLE_TARGET_OPCODE(COPY_TO_REGCLASS)
+HANDLE_TARGET_OPCODE(COPY_TO_REGCLASS)
 
 /// DBG_VALUE - a mapping of the llvm.dbg.value intrinsic
 HANDLE_TARGET_OPCODE(DBG_VALUE)
@@ -103,11 +103,11 @@ HANDLE_TARGET_OPCODE(DBG_LABEL)
 /// e.g. v1027 = REG_SEQUENCE v1024, 3, v1025, 4, v1026, 5
 /// After register coalescing references of v1024 should be replace with
 /// v1027:3, v1025 with v1027:4, etc.
-  HANDLE_TARGET_OPCODE(REG_SEQUENCE)
+HANDLE_TARGET_OPCODE(REG_SEQUENCE)
 
 /// COPY - Target-independent register copy. This instruction can also be
 /// used to copy between subregisters of virtual registers.
-  HANDLE_TARGET_OPCODE(COPY)
+HANDLE_TARGET_OPCODE(COPY)
 
 /// BUNDLE - This instruction represents an instruction bundle. Instructions
 /// which immediately follow a BUNDLE instruction which are marked with


        


More information about the llvm-commits mailing list