[clang] afc287e - Fix clang test after D76886
Nikita Popov via cfe-commits
cfe-commits at lists.llvm.org
Thu Apr 30 14:42:55 PDT 2020
Author: Nikita Popov
Date: 2020-04-30T23:42:38+02:00
New Revision: afc287e0abec710398465ee1f86237513f2b5091
URL: https://github.com/llvm/llvm-project/commit/afc287e0abec710398465ee1f86237513f2b5091
DIFF: https://github.com/llvm/llvm-project/commit/afc287e0abec710398465ee1f86237513f2b5091.diff
LOG: Fix clang test after D76886
Added:
Modified:
clang/test/CodeGen/builtin-movdir.c
Removed:
################################################################################
diff --git a/clang/test/CodeGen/builtin-movdir.c b/clang/test/CodeGen/builtin-movdir.c
index 8d4edfbf8f77..e13cc776edd6 100644
--- a/clang/test/CodeGen/builtin-movdir.c
+++ b/clang/test/CodeGen/builtin-movdir.c
@@ -24,11 +24,6 @@ void test_directstore64(void *dst, uint64_t value) {
void test_dir64b(void *dst, const void *src) {
// CHECK-LABEL: test_dir64b
- // CHECK: [[PTRINT1:%.+]] = ptrtoint
- // X86: [[MASKEDPTR1:%.+]] = and i32 [[PTRINT1]], 63
- // X86: [[MASKCOND1:%.+]] = icmp eq i32 [[MASKEDPTR1]], 0
- // X86_64: [[MASKEDPTR1:%.+]] = and i64 [[PTRINT1]], 63
- // X86_64: [[MASKCOND1:%.+]] = icmp eq i64 [[MASKEDPTR1]], 0
// CHECK: call void @llvm.x86.movdir64b
_movdir64b(dst, src);
}
More information about the cfe-commits
mailing list