File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
clang/test/CodeGenCoroutines Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
// This test is adapted from coro-elide.cpp and splits functions into two files.
3
3
//
4
4
// RUN: split-file %s %t
5
- // RUN: %clang --target=x86_64-linux -std=c++20 -O2 -flto=thin -I %S -c %t/coro-elide-callee.cpp -o coro-elide-callee.o
6
- // RUN: %clang --target=x86_64-linux -std=c++20 -O2 -flto=thin -I %S -c %t/coro-elide-caller.cpp -o coro-elide-caller.o
7
- // RUN: llvm-lto -thinlto coro-elide-callee.o coro-elide-caller.o -o summary
8
- // RUN: %clang_cc1 -O2 -x ir coro-elide-caller.o -fthinlto-index=summary.thinlto.bc -emit-llvm -o - | FileCheck %s
5
+ // RUN: %clang --target=x86_64-linux -std=c++20 -O2 -flto=thin -I %S -c %t/coro-elide-callee.cpp -o %t/ coro-elide-callee.o
6
+ // RUN: %clang --target=x86_64-linux -std=c++20 -O2 -flto=thin -I %S -c %t/coro-elide-caller.cpp -o %t/ coro-elide-caller.o
7
+ // RUN: llvm-lto -thinlto %t/ coro-elide-callee.o %t/ coro-elide-caller.o -o summary
8
+ // RUN: %clang_cc1 -O2 -x ir %t/ coro-elide-caller.o -fthinlto-index=summary.thinlto.bc -emit-llvm -o - | FileCheck %s
9
9
10
10
// --- coro-elide-task.h
11
11
#pragma once
You can’t perform that action at this time.
0 commit comments