
A significant number of our tests in C accidentally use functions 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 tenth batch of tests being updated (there are a significant number of other tests left to be updated).
16 lines
558 B
C
16 lines
558 B
C
// RUN: %clang_cc1 -mspeculative-load-hardening -disable-llvm-passes -emit-llvm %s -o - | FileCheck %s -check-prefix=SLH
|
|
// RUN: %clang -mno-speculative-load-hardening -S -emit-llvm %s -o - | FileCheck %s -check-prefix=NOSLH
|
|
//
|
|
// Check that we set the attribute on each function.
|
|
|
|
int test1(void) {
|
|
return 42;
|
|
}
|
|
// SLH: @{{.*}}test1{{.*}}[[SLH:#[0-9]+]]
|
|
|
|
// SLH: attributes [[SLH]] = { {{.*}}speculative_load_hardening{{.*}} }
|
|
|
|
// NOSLH: @{{.*}}test1{{.*}}[[NOSLH:#[0-9]+]]
|
|
|
|
// NOSLH-NOT: attributes [[NOSLH]] = { {{.*}}speculative_load_hardening{{.*}} }
|