Author: Jason-VanBeusekom Date: 2025-12-02T17:12:56Z New Revision: 90634160d0687a58a5dec8d199013eb31203de5e
URL: https://github.com/llvm/llvm-project/commit/90634160d0687a58a5dec8d199013eb31203de5e DIFF: https://github.com/llvm/llvm-project/commit/90634160d0687a58a5dec8d199013eb31203de5e.diff LOG: [OpenMP][clang] Remove metadata checks in amdgcn_weak_alias.c (#170326) 4394aa685c4b01ad3782a137fcfebeadc4941df1 introduced the test amdgcn_weak_alias, which is failing on the reverse iteration build, due to the the order of the aliasees being different. This failure is a test issue, not a bug, so the metadata checks are removed. Added: Modified: clang/test/OpenMP/amdgcn_weak_alias.c Removed: ################################################################################ diff --git a/clang/test/OpenMP/amdgcn_weak_alias.c b/clang/test/OpenMP/amdgcn_weak_alias.c index a9d5c1737b321..33c7dc0041810 100644 --- a/clang/test/OpenMP/amdgcn_weak_alias.c +++ b/clang/test/OpenMP/amdgcn_weak_alias.c @@ -94,10 +94,3 @@ int Three(void) __attribute__ ((weak, alias("__Three"))); int Three_(void) __attribute__ ((alias("__Three"))); extern int __attribute__((weak, alias("__Three_var"))) Three_var; extern int __attribute__((alias("__Three_var"))) Three_var_; -//. -// HOST: [[META0:![0-9]+]] = !{i32 1, !"__Two_var", i32 0, i32 0} -// HOST: [[META1:![0-9]+]] = !{i32 1, !"__Three_var", i32 0, i32 1} -//. -// DEVICE: [[META0:![0-9]+]] = !{i32 1, !"__Two_var", i32 0, i32 0} -// DEVICE: [[META1:![0-9]+]] = !{i32 1, !"__Three_var", i32 0, i32 1} -//. _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
