mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-08 09:03:18 +00:00
a45cf5b6b0
Tests and drivers updated, still need to shuffle dirs. llvm-svn: 67602
12 lines
228 B
C
12 lines
228 B
C
// RUN: not clang-cc -fsyntax-only %s
|
|
// PR1900
|
|
// This test should get a redefinition error from m_iopt.h: the MI opt
|
|
// shouldn't apply.
|
|
|
|
#define MACRO
|
|
#include "mi_opt.h"
|
|
#undef MACRO
|
|
#define MACRO || 1
|
|
#include "mi_opt.h"
|
|
|