Skip to content

Commit 11d4382

Browse files
committed
Use dummy function signature
1 parent e7b150a commit 11d4382

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/include/clang/Basic/Builtins.td

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1980,13 +1980,13 @@ def AtomicNandFetch : AtomicBuiltin {
19801980
def AtomicTestAndSet : AtomicBuiltin {
19811981
let Spellings = ["__atomic_test_and_set"];
19821982
let Attributes = [NoThrow, CustomTypeChecking];
1983-
let Prototype = "bool(void volatile*, int)";
1983+
let Prototype = "void(...)";
19841984
}
19851985

19861986
def AtomicClear : AtomicBuiltin {
19871987
let Spellings = ["__atomic_clear"];
19881988
let Attributes = [NoThrow, CustomTypeChecking];
1989-
let Prototype = "void(void volatile*, int)";
1989+
let Prototype = "void(...)";
19901990
}
19911991

19921992
def AtomicThreadFence : Builtin {

0 commit comments

Comments
 (0)