mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 07:09:08 +00:00
[Test Commit] fixing some format issue in X86TTI to match clang-format output.
llvm-svn: 291095
This commit is contained in:
parent
d697873892
commit
74ff99c1f4
@ -80,9 +80,12 @@ unsigned X86TTIImpl::getNumberOfRegisters(bool Vector) {
|
||||
|
||||
unsigned X86TTIImpl::getRegisterBitWidth(bool Vector) {
|
||||
if (Vector) {
|
||||
if (ST->hasAVX512()) return 512;
|
||||
if (ST->hasAVX()) return 256;
|
||||
if (ST->hasSSE1()) return 128;
|
||||
if (ST->hasAVX512())
|
||||
return 512;
|
||||
if (ST->hasAVX())
|
||||
return 256;
|
||||
if (ST->hasSSE1())
|
||||
return 128;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user