Skip to content

Commit b9127bf

Browse files
committed
Fix: Formatting comments position
1 parent 9f26d49 commit b9127bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Target/X86/GISel/X86LegalizerInfo.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ X86LegalizerInfo::X86LegalizerInfo(const X86Subtarget &STI,
8383
// todo: AVX512 bool vector predicate types
8484

8585
// implicit/constants
86-
getActionDefinitionsBuilder(G_IMPLICIT_DEF)
87-
.legalFor({p0, s1, s8, s16, s32, s64})
88-
.legalFor(Is64Bit, {s128});
8986
// 32/64-bits needs support for s64/s128 to handle cases:
9087
// s64 = EXTEND (G_IMPLICIT_DEF s32) -> s64 = G_IMPLICIT_DEF
9188
// s128 = EXTEND (G_IMPLICIT_DEF s32/s64) -> s128 = G_IMPLICIT_DEF
89+
getActionDefinitionsBuilder(G_IMPLICIT_DEF)
90+
.legalFor({p0, s1, s8, s16, s32, s64})
91+
.legalFor(Is64Bit, {s128});
9292

9393
getActionDefinitionsBuilder(G_CONSTANT)
9494
.legalFor({p0, s8, s16, s32})

0 commit comments

Comments
 (0)