mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-04 12:15:46 +00:00
61fa9afe4c
This diff changes llvm-ifs to use unified IFS file format and perform other renaming changes in preparation for the merging between elfabi/ifs. Differential Revision: https://reviews.llvm.org/D99810
12 lines
247 B
C++
12 lines
247 B
C++
// RUN: %clang_cc1 -o - -emit-interface-stubs %s | FileCheck %s
|
|
|
|
// CHECK: --- !ifs-v1
|
|
// CHECK-NEXT: IfsVersion: 3.0
|
|
// CHECK-NEXT: Target:
|
|
// CHECK-NEXT: Symbols:
|
|
// CHECK-NEXT: ...
|
|
|
|
// NamespaceAliasDecl
|
|
namespace NS { }
|
|
namespace B = NS;
|