blob: 433e03324bce7e9cc99276d57f1674add99bb9b6 [file] [log] [blame]
Douglas Gregor42583322011-11-16 05:16:30 +00001// RUN: rm -rf %t
Douglas Gregor953a61f2013-02-07 19:01:24 +00002// RUN: %clang_cc1 -fmodules -x objective-c -emit-module -fmodules-cache-path=%t -fmodule-name=macros_top %S/Inputs/module.map
3// RUN: %clang_cc1 -fmodules -x objective-c -emit-module -fmodules-cache-path=%t -fmodule-name=macros_left %S/Inputs/module.map
4// RUN: %clang_cc1 -fmodules -x objective-c -emit-module -fmodules-cache-path=%t -fmodule-name=macros_right %S/Inputs/module.map
5// RUN: %clang_cc1 -fmodules -x objective-c -emit-module -fmodules-cache-path=%t -fmodule-name=macros %S/Inputs/module.map
6// RUN: %clang_cc1 -fmodules -x objective-c -verify -fmodules-cache-path=%t %s
7// RUN: %clang_cc1 -E -fmodules -x objective-c -fmodules-cache-path=%t %s | FileCheck -check-prefix CHECK-PREPROCESSED %s
Douglas Gregorc13a34b2012-01-03 19:32:59 +00008// FIXME: When we have a syntax for modules in C, use that.
Douglas Gregor6c6c54a2012-10-11 00:46:49 +00009// These notes come from headers in modules, and are bogus.
Douglas Gregore8219a62012-10-11 21:07:39 +000010
Andy Gibbsb42f2002013-04-17 08:06:46 +000011// FIXME: expected-note@Inputs/macros_left.h:11{{previous definition is here}}
12// FIXME: expected-note@Inputs/macros_right.h:12{{previous definition is here}}
13// expected-note@Inputs/macros_right.h:12{{expanding this definition of 'LEFT_RIGHT_DIFFERENT'}}
14// expected-note@Inputs/macros_top.h:13{{other definition of 'TOP_RIGHT_REDEF'}}
15// expected-note@Inputs/macros_right.h:13{{expanding this definition of 'LEFT_RIGHT_DIFFERENT2'}}
16// expected-note@Inputs/macros_left.h:14{{other definition of 'LEFT_RIGHT_DIFFERENT'}}
17// expected-note@Inputs/macros_right.h:17{{expanding this definition of 'TOP_RIGHT_REDEF'}}
Douglas Gregor7143aab2011-09-01 17:04:32 +000018
Douglas Gregor1b257af2012-12-11 22:11:52 +000019@import macros;
Douglas Gregor7143aab2011-09-01 17:04:32 +000020
21#ifndef INTEGER
22# error INTEGER macro should be visible
23#endif
24
25#ifdef FLOAT
26# error FLOAT macro should not be visible
27#endif
28
29#ifdef MODULE
30# error MODULE macro should not be visible
31#endif
32
Douglas Gregorde8a9052011-09-14 23:13:09 +000033// CHECK-PREPROCESSED: double d
Douglas Gregor7143aab2011-09-01 17:04:32 +000034double d;
35DOUBLE *dp = &d;
36
Douglas Gregor1ac13c32012-01-03 19:48:16 +000037#__public_macro WIBBLE // expected-error{{no macro named 'WIBBLE'}}
Douglas Gregor7143aab2011-09-01 17:04:32 +000038
Douglas Gregorce835df2011-09-14 22:14:14 +000039void f() {
Douglas Gregorde8a9052011-09-14 23:13:09 +000040 // CHECK-PREPROCESSED: int i = INTEGER;
Douglas Gregorce835df2011-09-14 22:14:14 +000041 int i = INTEGER; // the value was exported, the macro was not.
Douglas Gregorb09de512012-09-25 15:44:52 +000042 i += macros; // expanded from __MODULE__ within the 'macros' module.
Douglas Gregorce835df2011-09-14 22:14:14 +000043}
Douglas Gregorb09de512012-09-25 15:44:52 +000044
45#ifdef __MODULE__
46# error Not building a module!
47#endif
48
49#if __building_module(macros)
50# error Not building a module
51#endif
Douglas Gregor6c6c54a2012-10-11 00:46:49 +000052
53// None of the modules we depend on have been imported, and therefore
54// their macros should not be visible.
55#ifdef LEFT
56# error LEFT should not be visible
57#endif
58
59#ifdef RIGHT
60# error RIGHT should not be visible
61#endif
62
63#ifdef TOP
64# error TOP should not be visible
65#endif
66
67// Import left module (which also imports top)
Douglas Gregor1b257af2012-12-11 22:11:52 +000068@import macros_left;
Douglas Gregor6c6c54a2012-10-11 00:46:49 +000069
70#ifndef LEFT
71# error LEFT should be visible
72#endif
73
74#ifdef RIGHT
75# error RIGHT should not be visible
76#endif
77
78#ifndef TOP
79# error TOP should be visible
80#endif
81
Argyrios Kyrtzidis35803282013-03-27 01:25:19 +000082#ifndef TOP_LEFT_UNDEF
83# error TOP_LEFT_UNDEF should still be defined
Douglas Gregor6c6c54a2012-10-11 00:46:49 +000084#endif
85
86void test1() {
87 int i;
88 TOP_RIGHT_REDEF *ip = &i;
89}
90
Argyrios Kyrtzidis35803282013-03-27 01:25:19 +000091#define LEFT_RIGHT_DIFFERENT2 double // FIXME: expected-warning{{'LEFT_RIGHT_DIFFERENT2' macro redefined}} \
92 // expected-note{{other definition of 'LEFT_RIGHT_DIFFERENT2'}}
Douglas Gregor6c6c54a2012-10-11 00:46:49 +000093
94// Import right module (which also imports top)
Douglas Gregor1b257af2012-12-11 22:11:52 +000095@import macros_right;
Douglas Gregor6c6c54a2012-10-11 00:46:49 +000096
97#undef LEFT_RIGHT_DIFFERENT3
98
99#ifndef LEFT
100# error LEFT should be visible
101#endif
102
103#ifndef RIGHT
104# error RIGHT should be visible
105#endif
106
107#ifndef TOP
108# error TOP should be visible
109#endif
110
Douglas Gregor6c6c54a2012-10-11 00:46:49 +0000111void test2() {
112 int i;
113 float f;
114 double d;
Argyrios Kyrtzidis35803282013-03-27 01:25:19 +0000115 TOP_RIGHT_REDEF *fp = &f; // expected-warning{{ambiguous expansion of macro 'TOP_RIGHT_REDEF'}}
Douglas Gregor6c6c54a2012-10-11 00:46:49 +0000116
Argyrios Kyrtzidis35803282013-03-27 01:25:19 +0000117 LEFT_RIGHT_IDENTICAL *ip = &i;
118 LEFT_RIGHT_DIFFERENT *ip2 = &i; // expected-warning{{ambiguous expansion of macro 'LEFT_RIGHT_DIFFERENT'}}
119 LEFT_RIGHT_DIFFERENT2 *ip3 = &i; // expected-warning{{ambiguous expansion of macro 'LEFT_RIGHT_DIFFERENT2}}
Douglas Gregor6c6c54a2012-10-11 00:46:49 +0000120 int LEFT_RIGHT_DIFFERENT3;
121}
122
123#define LEFT_RIGHT_DIFFERENT double // FIXME: expected-warning{{'LEFT_RIGHT_DIFFERENT' macro redefined}}
124
125void test3() {
126 double d;
127 LEFT_RIGHT_DIFFERENT *dp = &d; // okay
Argyrios Kyrtzidisbd25ff82013-04-03 17:39:30 +0000128 int x = FN_ADD(1,2);
Douglas Gregor6c6c54a2012-10-11 00:46:49 +0000129}
Douglas Gregor54c8a402012-10-12 00:16:50 +0000130
131#ifndef TOP_RIGHT_UNDEF
132# error TOP_RIGHT_UNDEF should still be defined
133#endif
134
Douglas Gregor1b257af2012-12-11 22:11:52 +0000135@import macros_right.undef;
Douglas Gregor54c8a402012-10-12 00:16:50 +0000136
Argyrios Kyrtzidis35803282013-03-27 01:25:19 +0000137#ifndef TOP_RIGHT_UNDEF
138# error TOP_RIGHT_UNDEF should still be defined
Douglas Gregor54c8a402012-10-12 00:16:50 +0000139#endif