Skip to content

Commit 48176a5

Browse files
committed
[X86] Minor formatting fix to getHostCPUFeatures. NFC
llvm-svn: 321015
1 parent 02c124d commit 48176a5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/Support/Host.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1255,8 +1255,7 @@ bool sys::getHostCPUFeatures(StringMap<bool> &Features) {
12551255
Features["avx512vnni"] = HasLeaf7 && ((ECX >> 11) & 1) && HasAVX512Save;
12561256
Features["avx512bitalg"] = HasLeaf7 && ((ECX >> 12) & 1) && HasAVX512Save;
12571257
Features["avx512vpopcntdq"] = HasLeaf7 && ((ECX >> 14) & 1) && HasAVX512Save;
1258-
1259-
Features["ibt"] = HasLeaf7 && ((EDX >> 20) & 1);
1258+
Features["ibt"] = HasLeaf7 && ((EDX >> 20) & 1);
12601259

12611260
bool HasLeafD = MaxLevel >= 0xd &&
12621261
!getX86CpuIDAndInfoEx(0xd, 0x1, &EAX, &EBX, &ECX, &EDX);

0 commit comments

Comments
 (0)