diff options
author | David Majnemer <david.majnemer@gmail.com> | 2014-12-26 18:45:57 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2014-12-26 18:45:57 +0000 |
commit | fd4f63ad4b06495926be89059b7fa71ffb34da11 (patch) | |
tree | 5ab214adf79d2794170212a22fb3e60c0c866d9c /clang/test/CodeGen/bmi2-builtins.c | |
parent | 1a7ef86addb7d0a90c1aabe95f5007b3cae25859 (diff) | |
download | bcm5719-llvm-fd4f63ad4b06495926be89059b7fa71ffb34da11.tar.gz bcm5719-llvm-fd4f63ad4b06495926be89059b7fa71ffb34da11.zip |
Adjust the rest of the tests due to r224849.
llvm-svn: 224865
Diffstat (limited to 'clang/test/CodeGen/bmi2-builtins.c')
-rw-r--r-- | clang/test/CodeGen/bmi2-builtins.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/bmi2-builtins.c b/clang/test/CodeGen/bmi2-builtins.c index 294459bd83d..5aa54fd0ec3 100644 --- a/clang/test/CodeGen/bmi2-builtins.c +++ b/clang/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); } |