mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-15 12:39:19 +00:00
38e033bf33
This reverts r371497 (git commit 3d7e9ab7b9f8c53aa41420c54970f0fb421004a2) Reorder `not` with `env` in these two tests so they pass: Driver/rewrite-map-in-diagnostics.c Index/crash-recovery-modules.m. This will not be necessary after D66531 lands. llvm-svn: 371552
7 lines
244 B
C++
7 lines
244 B
C++
// RUN: %clangxx -S -ftime-trace -ftime-trace-granularity=0 -o %T/check-time-trace-sections %s
|
|
// RUN: cat %T/check-time-trace-sections.json | %python %S/check-time-trace-sections.py
|
|
|
|
template <typename T>
|
|
void foo(T) {}
|
|
void bar() { foo(0); }
|