mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 16:46:06 +00:00

Reverts llvm/llvm-project#99545 There were a couple of issues reported in the PR: a sanitizer warning (https://lab.llvm.org/buildbot/#/builders/164/builds/1246/steps/14/logs/stdio) and a tmp file accidentally included in the commit.
8 lines
224 B
C++
8 lines
224 B
C++
// RUN: rm -rf %t && mkdir %t && cd %t
|
|
// RUN: %clangxx -S -ftime-trace -ftime-trace-granularity=0 -o out %s
|
|
// RUN: %python %S/ftime-trace-sections.py < out.json
|
|
|
|
template <typename T>
|
|
void foo(T) {}
|
|
void bar() { foo(0); }
|