From: David Majnemer Date: Fri, 26 Dec 2014 18:45:57 +0000 (+0000) Subject: Adjust the rest of the tests due to r224849. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=36ee1a52b7bdeabdd1bec4aac4c84e192013399f;p=clang Adjust the rest of the tests due to r224849. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@224865 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/bmi2-builtins.c b/test/CodeGen/bmi2-builtins.c index 294459bd83..5aa54fd0ec 100644 --- a/test/CodeGen/bmi2-builtins.c +++ b/test/CodeGen/bmi2-builtins.c @@ -24,9 +24,9 @@ unsigned int test_pext_u32(unsigned int __X, unsigned int __Y) { unsigned int test_mulx_u32(unsigned int __X, unsigned int __Y, unsigned int *__P) { // CHECK: @test_mulx_u32 - // CHECK-NOT: mul i64 + // CHECK-NOT: mul nuw i64 // B32: @test_mulx_u32 - // B32: mul i64 + // B32: mul nuw i64 return _mulx_u32(__X, __Y, __P); }