Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Preprocessor / macro_paste_identifier_error.c
blobbba317239ac644d7ee53fc832401e2bbfe1ee785
1 // RUN: %clang_cc1 -fms-extensions -Wno-invalid-token-paste %s -verify
2 // RUN: %clang_cc1 -E -fms-extensions -Wno-invalid-token-paste %s | FileCheck %s
3 // RUN: %clang_cc1 -E -fms-extensions -Wno-invalid-token-paste -x assembler-with-cpp %s | FileCheck %s
4 // expected-no-diagnostics
6 #define foo a ## b ## = 0
7 int foo;
8 // CHECK: int ab = 0;