Mercurial > hg > CbC > CbC_llvm
view clang/test/Misc/tabstop.c @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | 1f2b6ac9f198 |
children |
line wrap: on
line source
// RUN: %clang_cc1 -ftabstop 3 -fsyntax-only -Wno-error=int-conversion -fno-diagnostics-show-line-numbers %s 2>&1 | FileCheck -check-prefix=CHECK-3 -strict-whitespace %s // RUN: %clang_cc1 -ftabstop 4 -fsyntax-only -Wno-error=int-conversion -fno-diagnostics-show-line-numbers %s 2>&1 | FileCheck -check-prefix=CHECK-4 -strict-whitespace %s // RUN: %clang_cc1 -ftabstop 5 -fsyntax-only -Wno-error=int-conversion -fno-diagnostics-show-line-numbers %s 2>&1 | FileCheck -check-prefix=CHECK-5 -strict-whitespace %s // RUN: %clang_cc1 -ftabstop 101 -fsyntax-only -Wno-error=int-conversion -fno-diagnostics-show-line-numbers %s 2>&1 | FileCheck -check-prefix=CHECK-101 -strict-whitespace %s // tab void* a = 1; // tab tab void* b = 1; // 3x space tab void* c = 1; // tab at column 10 void* d = 1; //CHECK-3: {{^ void\* a = 1;}} //CHECK-3: {{^ void\* b = 1;}} //CHECK-3: {{^ void\* c = 1;}} //CHECK-3: {{^void\* d = 1;}} //CHECK-4: {{^ void\* a = 1;}} //CHECK-4: {{^ void\* b = 1;}} //CHECK-4: {{^ void\* c = 1;}} //CHECK-4: {{^void\* d = 1;}} //CHECK-5: {{^ void\* a = 1;}} //CHECK-5: {{^ void\* b = 1;}} //CHECK-5: {{^ void\* c = 1;}} //CHECK-5: {{^void\* d = 1;}} // Test code modification hints void f(void) { if (0 & 1 == 1) {} if (1 == 0 & 1) {} } // CHECK-3: {{^ }}if (0 & 1 == 1) // CHECK-3: {{^ }} ( ) // CHECK-3: {{^ }}if (1 == 0 & 1) // CHECK-3: {{^ }} ( ) // CHECK-4: {{^ }}if (0 & 1 == 1) // CHECK-4: {{^ }} ( ) // CHECK-4: {{^ }}if (1 == 0 & 1) // CHECK-4: {{^ }} ( ) // CHECK-5: {{^ }}if (0 & 1 == 1) // CHECK-5: {{^ }} ( ) // CHECK-5: {{^ }}if (1 == 0 & 1) // CHECK-5: {{^ }} ( ) // CHECK-101: warning: ignoring invalid -ftabstop value '101', using default value 8