| Index: unittest/AssemblerX8664/LowLevel.cpp | 
| diff --git a/unittest/AssemblerX8664/LowLevel.cpp b/unittest/AssemblerX8664/LowLevel.cpp | 
| index 20f22523c1e0b1bfdc8b1348d69788373d19402a..44ce00bb652cf71987d5e0790abd77d09dbf0c44 100644 | 
| --- a/unittest/AssemblerX8664/LowLevel.cpp | 
| +++ b/unittest/AssemblerX8664/LowLevel.cpp | 
| @@ -215,10 +215,9 @@ TEST_F(AssemblerX8664LowLevelTest, Cmp) { | 
| "(" #Inst ", " #Dst ", " #Index ", " #Scale ", " #Disp ", " #OpType    \ | 
| ", " #ByteCountUntyped ",  " #__VA_ARGS__ ")";                         \ | 
| static constexpr uint8_t ByteCount = ByteCountUntyped;                     \ | 
| -    __ Inst(                                                                   \ | 
| -        IceType_##OpType, Encoded_GPR_##Dst(),                                 \ | 
| -        Address(Encoded_GPR_##Index(), Traits::TIMES_##Scale, Disp,            \ | 
| -                AssemblerFixup::NoFixup));                                     \ | 
| +    __ Inst(IceType_##OpType, Encoded_GPR_##Dst(),                             \ | 
| +            Address(Encoded_GPR_##Index(), Traits::TIMES_##Scale, Disp,        \ | 
| +                    AssemblerFixup::NoFixup));                                 \ | 
| ASSERT_EQ(ByteCount, codeBytesSize()) << TestString;                       \ | 
| ASSERT_TRUE(verifyBytes<ByteCount>(codeBytes(), __VA_ARGS__))              \ | 
| << TestString;                                                         \ | 
|  |