[NFC] Add missing ABI requirement from the previous patch

This commit is contained in:
Chuanqi Xu 2022-10-18 13:15:52 +08:00
parent b1e9ce7f22
commit 8e7d5d5863
1 changed files with 2 additions and 0 deletions

View File

@ -4,12 +4,14 @@
// RUN: %clang_cc1 -triple %itanium_abi_triple -std=c++20 %t/M.cppm \
// RUN: -emit-module-interface -o %t/M.pcm
// RUN: %clang_cc1 -std=c++20 %t/Use.cpp -fprebuilt-module-path=%t \
// RUN: -triple %itanium_abi_triple \
// RUN: -S -emit-llvm -o - -disable-llvm-passes \
// RUN: | FileCheck %t/Use.cpp --check-prefix=CHECK-O0
//
// RUN: %clang_cc1 -triple %itanium_abi_triple -std=c++20 -O1 %t/M.cppm \
// RUN: -emit-module-interface -o %t/M.pcm
// RUN: %clang_cc1 -std=c++20 %t/Use.cpp -fprebuilt-module-path=%t -O1 \
// RUN: -triple %itanium_abi_triple \
// RUN: -S -emit-llvm -o - -disable-llvm-passes | \
// RUN: FileCheck %t/Use.cpp --check-prefix=CHECK-O1