Mercurial > hg > CbC > CbC_llvm
view clang-tools-extra/test/clang-reorder-fields/CStructFieldsOrder.cpp @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children |
line wrap: on
line source
// RUN: clang-reorder-fields -record-name ::bar::Foo -fields-order z,w,y,x %s -- | FileCheck %s namespace bar { struct Foo { const int* x; // CHECK: {{^ double z;}} int y; // CHECK-NEXT: {{^ int w;}} double z; // CHECK-NEXT: {{^ int y;}} int w; // CHECK-NEXT: {{^ const int\* x}} }; } // end namespace bar int main() { const int x = 13; bar::Foo foo = { &x, 0, 1.29, 17 }; // CHECK: {{^ bar::Foo foo = { 1.29, 17, 0, &x };}} return 0; }