mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-05 23:52:45 +00:00
5618e98f33
clang ' or ' clang -cc1 ' or ' clang-cc ' in test lines (by substituting them to garbage). llvm-svn: 91460
8 lines
188 B
C
8 lines
188 B
C
// RUN: %clang -fsyntax-only -Wno-deprecated-declarations -verify %s
|
|
extern void OldFunction() __attribute__((deprecated));
|
|
|
|
int main (int argc, const char * argv[]) {
|
|
OldFunction();
|
|
}
|
|
|