mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-14 03:29:57 +00:00
1ea584377e
without prototypes. This patch converts the function signatures to have a prototype for the situations where the test is not specific to K&R C declarations. e.g., void func(); becomes void func(void); This is the ninth batch of tests being updated (there are a significant number of other tests left to be updated).
16 lines
282 B
C
16 lines
282 B
C
// RUN: rm -f %t1.bc
|
|
// RUN: %clang_cc1 -DPASS %s -emit-llvm-bc -o %t1.bc
|
|
// RUN: opt %t1.bc -disable-output
|
|
// RUN: rm -f %t1.bc
|
|
// RUN: not %clang_cc1 %s -emit-llvm-bc -o %t1.bc
|
|
// RUN: not opt %t1.bc -disable-output
|
|
|
|
void f(void) {
|
|
}
|
|
|
|
#ifndef PASS
|
|
void g(void) {
|
|
*10;
|
|
}
|
|
#endif
|