mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-18 06:10:37 +00:00

Summary: Its job is covered by -ast-dump. The option is rarely used and lacks many AST nodes which will lead to llvm_unreachable() crash. Reviewers: rsmith, arphaman Reviewed By: rsmith Subscribers: jfb, cfe-commits Differential Revision: https://reviews.llvm.org/D52529 llvm-svn: 343660
10 lines
379 B
C++
10 lines
379 B
C++
// RUN: %clang_cc1 -std=c++14 -fsyntax-only %s
|
|
// RUN: %clang_cc1 -std=c++14 -ast-print %s -o %t.1.cpp
|
|
// RUN: %clang_cc1 -std=c++14 -ast-print %t.1.cpp -o %t.2.cpp
|
|
// RUN: diff %t.1.cpp %t.2.cpp
|
|
// RUN: %clang_cc1 -std=c++14 -ast-dump %s
|
|
// RUN: %clang_cc1 -std=c++14 -ast-dump-all %s
|
|
// RUN: %clang_cc1 -std=c++14 -fdump-record-layouts %s
|
|
|
|
#include "cxx-language-features.inc"
|