2 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c -verify -fmodules-cache-path=%t -I %S/Inputs %s
3 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c -verify -fmodules-cache-path=%t -I %S/Inputs %s -DALT
4 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c -verify -fmodules-cache-path=%t -I %S/Inputs %s -detailed-preprocessing-record
5 // RUN: not %clang_cc1 -E -fmodules -fimplicit-module-maps -x objective-c -fmodules-cache-path=%t -I %S/Inputs %s | FileCheck -check-prefix CHECK-PREPROCESSED %s
7 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c++ -verify -fmodules-cache-path=%t -I %S/Inputs %s
8 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c++ -verify -fmodules-cache-path=%t -I %S/Inputs %s -DALT
9 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c++ -verify -fmodules-cache-path=%t -I %S/Inputs %s -detailed-preprocessing-record
10 // RUN: not %clang_cc1 -E -fmodules -fimplicit-module-maps -x objective-c++ -fmodules-cache-path=%t -I %S/Inputs %s | FileCheck -check-prefix CHECK-PREPROCESSED %s
12 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -DLOCAL_VISIBILITY -fmodules-local-submodule-visibility -x objective-c++ -verify -fmodules-cache-path=%t -I %S/Inputs %s
13 // FIXME: When we have a syntax for modules in C, use that.
14 // These notes come from headers in modules, and are bogus.
16 // FIXME: expected-note@Inputs/macros_left.h:11{{previous definition is here}}
17 // FIXME: expected-note@Inputs/macros_right.h:12{{previous definition is here}}
18 // expected-note@Inputs/macros_right.h:12{{expanding this definition of 'LEFT_RIGHT_DIFFERENT'}}
19 // expected-note@Inputs/macros_right.h:13{{expanding this definition of 'LEFT_RIGHT_DIFFERENT2'}}
20 // expected-note@Inputs/macros_left.h:14{{other definition of 'LEFT_RIGHT_DIFFERENT'}}
25 # error INTEGER macro should be visible
29 # error FLOAT macro should not be visible
33 # error MODULE macro should not be visible
36 #ifndef INDIRECTLY_IN_MACROS
37 # error INDIRECTLY_IN_MACROS should be visible
40 // CHECK-PREPROCESSED: double d
44 #__public_macro WIBBLE // expected-error{{no macro named 'WIBBLE'}}
47 // CHECK-PREPROCESSED: int i = INTEGER;
48 int i
= INTEGER
; // the value was exported, the macro was not.
49 i
+= macros
; // expanded from __MODULE__ within the 'macros' module.
53 # error Not building a module!
56 #if __building_module(macros)
57 # error Not building a module
60 // None of the modules we depend on have been imported, and therefore
61 // their macros should not be visible.
63 # error LEFT should not be visible
67 # error RIGHT should not be visible
71 # error TOP should not be visible
77 // Import left module (which also imports top)
80 INTEGER my_integer
= 0;
83 # error LEFT should be visible
87 # error RIGHT should not be visible
91 # error TOP should be visible
95 # error TOP_LEFT_UNDEF should not be defined
100 TOP_RIGHT_REDEF
*ip
= &i
;
103 #define LEFT_RIGHT_DIFFERENT2 double // FIXME: expected-warning{{'LEFT_RIGHT_DIFFERENT2' macro redefined}} \
104 // expected-note{{other definition of 'LEFT_RIGHT_DIFFERENT2'}}
106 // Import right module (which also imports top)
107 @import macros_right
;
109 #undef LEFT_RIGHT_DIFFERENT3
112 # error LEFT should be visible
116 # error RIGHT should be visible
120 # error TOP should be visible
127 TOP_RIGHT_REDEF
*fp
= &f
; // ok, right's definition overrides top's definition
129 LEFT_RIGHT_IDENTICAL
*ip
= &i
;
130 LEFT_RIGHT_DIFFERENT
*ip2
= &i
; // expected-warning{{ambiguous expansion of macro 'LEFT_RIGHT_DIFFERENT'}}
131 LEFT_RIGHT_DIFFERENT2
*ip3
= &i
; // expected-warning{{ambiguous expansion of macro 'LEFT_RIGHT_DIFFERENT2}}
132 int LEFT_RIGHT_DIFFERENT3
;
135 #define LEFT_RIGHT_DIFFERENT double // FIXME: expected-warning{{'LEFT_RIGHT_DIFFERENT' macro redefined}}
139 LEFT_RIGHT_DIFFERENT
*dp
= &d
; // okay
143 #ifndef TOP_RIGHT_UNDEF
144 # error TOP_RIGHT_UNDEF should still be defined
147 @import macros_bottom
;
149 TOP_DEF_RIGHT_UNDEF
*TDRUf(void) { return TDRUp
; }
151 @import macros_right
.undef
;
153 int TOP_DEF_RIGHT_UNDEF
; // ok, no longer defined
155 #ifdef LOCAL_VISIBILITY
156 // TOP_RIGHT_UNDEF should not be undefined, because macros_right.undef does
157 // not undefine macros_right's macro.
158 # ifndef TOP_RIGHT_UNDEF
159 # error TOP_RIGHT_UNDEF should still be defined
162 // When macros_right.undef is built and local submodule visibility is not
163 // enabled, macros_top is visible because the state from building
164 // macros_right leaks through, so macros_right.undef undefines macros_top's
166 # ifdef TOP_RIGHT_UNDEF
167 # error TOP_RIGHT_UNDEF should not be defined
172 int tmp
= TOP_OTHER_REDEF1
;
175 @import macros_other
;
177 #ifndef TOP_OTHER_UNDEF1
178 # error TOP_OTHER_UNDEF1 should still be defined
181 #ifndef TOP_OTHER_UNDEF2
182 # error TOP_OTHER_UNDEF2 should still be defined
184 #pragma clang __debug macro TOP_OTHER_REDEF1
185 #ifndef TOP_OTHER_REDEF1
186 # error TOP_OTHER_REDEF1 should still be defined
188 int n1
= TOP_OTHER_REDEF1
; // expected-warning{{ambiguous expansion of macro 'TOP_OTHER_REDEF1'}}
189 // expected-note@macros_other.h:4 {{expanding this definition}}
190 // expected-note@macros_top.h:19 {{other definition}}
192 #ifndef TOP_OTHER_REDEF2
193 # error TOP_OTHER_REDEF2 should still be defined
195 int n2
= TOP_OTHER_REDEF2
; // ok
197 int n3
= TOP_OTHER_DEF_RIGHT_UNDEF
; // ok