diff options
author | Tyker <tyker1@outlook.com> | 2019-11-30 17:52:26 +0100 |
---|---|---|
committer | Tyker <tyker1@outlook.com> | 2019-11-30 17:52:26 +0100 |
commit | 3f4b70c79e686117c2754d2c0a5a44c8b6829e79 (patch) | |
tree | 4e9fb7f12d80f6208972815712120254ff302340 /clang/test/Modules/Inputs/merge-lifetime-extended-temporary | |
parent | 3c7f6b439699a9cbbc0ac8d288cc70aff357446b (diff) | |
download | bcm5719-llvm-3f4b70c79e686117c2754d2c0a5a44c8b6829e79.tar.gz bcm5719-llvm-3f4b70c79e686117c2754d2c0a5a44c8b6829e79.zip |
Revert "[clang][modules] Add support for merging lifetime-extended temporaries"
This reverts commit 3c7f6b439699a9cbbc0ac8d288cc70aff357446b.
Diffstat (limited to 'clang/test/Modules/Inputs/merge-lifetime-extended-temporary')
4 files changed, 0 insertions, 24 deletions
diff --git a/clang/test/Modules/Inputs/merge-lifetime-extended-temporary/a.h b/clang/test/Modules/Inputs/merge-lifetime-extended-temporary/a.h deleted file mode 100644 index 8adab29eafc..00000000000 --- a/clang/test/Modules/Inputs/merge-lifetime-extended-temporary/a.h +++ /dev/null @@ -1,2 +0,0 @@ - -constexpr const int& LETemp = 0; diff --git a/clang/test/Modules/Inputs/merge-lifetime-extended-temporary/b.h b/clang/test/Modules/Inputs/merge-lifetime-extended-temporary/b.h deleted file mode 100644 index 2bd1b096d60..00000000000 --- a/clang/test/Modules/Inputs/merge-lifetime-extended-temporary/b.h +++ /dev/null @@ -1,4 +0,0 @@ - -#include "a.h" - -constexpr const int* PtrTemp1 = &LETemp; diff --git a/clang/test/Modules/Inputs/merge-lifetime-extended-temporary/c.h b/clang/test/Modules/Inputs/merge-lifetime-extended-temporary/c.h deleted file mode 100644 index b023eebca49..00000000000 --- a/clang/test/Modules/Inputs/merge-lifetime-extended-temporary/c.h +++ /dev/null @@ -1,4 +0,0 @@ - -#include "a.h" - -constexpr const int* PtrTemp2 = &LETemp; diff --git a/clang/test/Modules/Inputs/merge-lifetime-extended-temporary/module.modulemap b/clang/test/Modules/Inputs/merge-lifetime-extended-temporary/module.modulemap deleted file mode 100644 index 1339d627a44..00000000000 --- a/clang/test/Modules/Inputs/merge-lifetime-extended-temporary/module.modulemap +++ /dev/null @@ -1,14 +0,0 @@ -module "a" { - export * - header "a.h" -} - -module "b" { - export * - header "b.h" -} - -module "c" { - export * - header "c.h" -} |