You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
r |= __builtin_allow_runtime_check(); // expected-error {{too few arguments to function call}}
10
+
11
+
r |= __builtin_allow_runtime_check(str); // expected-error {{expression is not a string literal}}
12
+
13
+
r |= __builtin_allow_runtime_check(5); // expected-error {{incompatible integer to pointer conversion}} expected-error {{expression is not a string literal}}
14
+
15
+
r |= __builtin_allow_runtime_check("a", "b"); // expected-error {{too many arguments to function call}}
16
+
17
+
r |= __builtin_allow_runtime_check("");
18
+
19
+
r |= __builtin_allow_runtime_check("check");
20
+
21
+
str=__builtin_allow_runtime_check("check2"); // expected-error {{incompatible integer to pointer conversion}}
0 commit comments