mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-14 01:46:41 +00:00

Previosly we land
085eae6b86
to workaround the false positive ODR violations in
https://github.com/llvm/llvm-project/issues/76638.
However, we decided to not perform ODR checks for decls from GMF in
https://github.com/llvm/llvm-project/issues/79240 and we land the
corresponding change. So we should be able to remove the workaround now.
The original tests get remained.
52 lines
913 B
C++
52 lines
913 B
C++
// 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;
|
|
}
|
|
|