2016-02-04 06:41:00 +08:00
|
|
|
// RUN: rm -rf %t
|
|
|
|
// RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs %s -verify
|
2016-02-04 08:55:24 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs -x c %s -verify
|
|
|
|
// RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs -x objective-c++ %s -verify
|
2016-02-04 06:41:00 +08:00
|
|
|
|
|
|
|
// RUN: rm -rf %t.pch.cache
|
|
|
|
// RUN: %clang_cc1 -fmodules-cache-path=%t.pch.cache -fmodules -fimplicit-module-maps -I %S/Inputs -emit-pch -o %t.pch -x objective-c-header %S/Inputs/use-builtin.h
|
|
|
|
// RUN: %clang_cc1 -fmodules-cache-path=%t.pch.cache -fmodules -fimplicit-module-maps -I %S/Inputs %s -include-pch %t.pch %s -verify
|
|
|
|
|
|
|
|
// expected-no-diagnostics
|
|
|
|
|
|
|
|
void use_constant_string_builtins1(void) {
|
|
|
|
(void)__builtin___CFStringMakeConstantString("");
|
|
|
|
(void)__builtin___NSStringMakeConstantString("");
|
|
|
|
}
|
|
|
|
|
2016-02-04 08:55:24 +08:00
|
|
|
#include "builtin.h"
|
2013-04-04 07:06:26 +08:00
|
|
|
|
|
|
|
int foo() {
|
|
|
|
return __builtin_object_size(p, 0);
|
|
|
|
}
|
|
|
|
|
2016-02-04 08:55:24 +08:00
|
|
|
#include "builtin_sub.h"
|
2013-04-04 07:06:26 +08:00
|
|
|
|
|
|
|
int bar() {
|
|
|
|
return __builtin_object_size(p, 0);
|
|
|
|
}
|
|
|
|
|
2015-10-29 06:25:37 +08:00
|
|
|
int baz() {
|
|
|
|
return IS_CONST(0);
|
|
|
|
}
|
2013-04-04 07:06:26 +08:00
|
|
|
|
2016-02-04 06:41:00 +08:00
|
|
|
void use_constant_string_builtins2(void) {
|
|
|
|
(void)__builtin___CFStringMakeConstantString("");
|
|
|
|
(void)__builtin___NSStringMakeConstantString("");
|
|
|
|
}
|