Update tests due to r224849

Inferring nuw caused some clang tests to change their output.

llvm-svn: 224851
This commit is contained in:
David Majnemer 2014-12-26 10:29:40 +00:00
parent f8c7e25560
commit ca7e485c3f
2 changed files with 2 additions and 2 deletions

View File

@ -48,6 +48,6 @@ unsigned long long test_pext_u64(unsigned long long __X, unsigned long long __Y)
unsigned long long test_mulx_u64(unsigned long long __X, unsigned long long __Y,
unsigned long long *__P) {
// CHECK: @test_mulx_u64
// CHECK: mul i128
// CHECK: mul nuw i128
return _mulx_u64(__X, __Y, __P);
}

View File

@ -67,7 +67,7 @@ unsigned __int64 test__umulh(unsigned __int64 a, unsigned __int64 b) {
return __umulh(a, b);
}
// CHECK-X64-LABEL: define i64 @test__umulh(i64 %a, i64 %b)
// CHECK-X64: = mul i128 %
// CHECK-X64: = mul nuw i128 %
#endif