forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[C++20] [Modules] Remove previous workaround for odr hashing enums
Previosly we land llvm@085eae6 to workaround the false positive ODR violations in llvm#76638. However, we decided to not perform ODR checks for decls from GMF in llvm#79240 and we land the corresponding change. So we should be able to remove the workaround now. The original tests get remained.
- Loading branch information
1 parent
6b9111d
commit 729a0b6
Showing
3 changed files
with
52 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// RUN: rm -rf %t | ||
// RUN: mkdir -p %t | ||
// RUN: split-file %s %t | ||
// | ||
// RUN: %clang_cc1 -std=c++20 %t/mod1.cppm -emit-module-interface -o %t/mod1.pcm | ||
// RUN: %clang_cc1 -std=c++20 %t/mod2.cppm -emit-module-interface -o %t/mod2.pcm | ||
// RUN: %clang_cc1 -std=c++20 %t/test.cpp -fprebuilt-module-path=%t -verify -fsyntax-only | ||
|
||
//--- size_t.h | ||
|
||
extern "C" { | ||
typedef unsigned int size_t; | ||
} | ||
|
||
//--- csize_t | ||
namespace std { | ||
using :: size_t; | ||
} | ||
|
||
//--- align.h | ||
namespace std { | ||
enum class align_val_t : size_t {}; | ||
} | ||
|
||
//--- mod1.cppm | ||
module; | ||
#include "size_t.h" | ||
#include "align.h" | ||
export module mod1; | ||
namespace std { | ||
export using std::align_val_t; | ||
} | ||
|
||
//--- mod2.cppm | ||
module; | ||
#include "size_t.h" | ||
#include "csize_t" | ||
#include "align.h" | ||
export module mod2; | ||
namespace std { | ||
export using std::align_val_t; | ||
} | ||
|
||
//--- test.cpp | ||
// expected-no-diagnostics | ||
import mod1; | ||
import mod2; | ||
void test() { | ||
std::align_val_t v; | ||
} | ||
|