blob: 8f6a20aa9380d416db2231a316a2b921714bafc7 [file] [log] [blame]
Douglas Gregor84febf42011-11-16 05:16:30 +00001// RUN: rm -rf %t
Douglas Gregor5a4649b2012-10-11 00:46:49 +00002// RUN: %clang_cc1 -fmodules -x objective-c -emit-module -fmodule-cache-path %t -fmodule-name=macros_top %S/Inputs/module.map
3// RUN: %clang_cc1 -fmodules -x objective-c -emit-module -fmodule-cache-path %t -fmodule-name=macros_left %S/Inputs/module.map
4// RUN: %clang_cc1 -fmodules -x objective-c -emit-module -fmodule-cache-path %t -fmodule-name=macros_right %S/Inputs/module.map
Douglas Gregorda82e702012-01-03 19:32:59 +00005// RUN: %clang_cc1 -fmodules -x objective-c -emit-module -fmodule-cache-path %t -fmodule-name=macros %S/Inputs/module.map
6// RUN: %clang_cc1 -fmodules -x objective-c -verify -fmodule-cache-path %t %s
7// RUN: %clang_cc1 -E -fmodules -x objective-c -fmodule-cache-path %t %s | FileCheck -check-prefix CHECK-PREPROCESSED %s
8// FIXME: When we have a syntax for modules in C, use that.
Douglas Gregor5a4649b2012-10-11 00:46:49 +00009// These notes come from headers in modules, and are bogus.
Douglas Gregor5968b1b2012-10-11 21:07:39 +000010
Douglas Gregor5a4649b2012-10-11 00:46:49 +000011// FIXME: expected-note{{previous definition is here}}
Douglas Gregor5968b1b2012-10-11 21:07:39 +000012// expected-note{{other definition of 'LEFT_RIGHT_DIFFERENT'}}
13// expected-note{{expanding this definition of 'TOP_RIGHT_REDEF'}}
14// FIXME: expected-note{{previous definition is here}} \
15// expected-note{{expanding this definition of 'LEFT_RIGHT_DIFFERENT'}}
16
17// expected-note{{other definition of 'TOP_RIGHT_REDEF'}}
Douglas Gregor4a69c2e2011-09-01 17:04:32 +000018
Ted Kremenekc1e4dd02012-03-01 22:07:04 +000019@__experimental_modules_import macros;
Douglas Gregor4a69c2e2011-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 Gregor21931ef2011-09-14 23:13:09 +000033// CHECK-PREPROCESSED: double d
Douglas Gregor4a69c2e2011-09-01 17:04:32 +000034double d;
35DOUBLE *dp = &d;
36
Douglas Gregor663b48f2012-01-03 19:48:16 +000037#__public_macro WIBBLE // expected-error{{no macro named 'WIBBLE'}}
Douglas Gregor4a69c2e2011-09-01 17:04:32 +000038
Douglas Gregord7910e92011-09-14 22:14:14 +000039void f() {
Douglas Gregor21931ef2011-09-14 23:13:09 +000040 // CHECK-PREPROCESSED: int i = INTEGER;
Douglas Gregord7910e92011-09-14 22:14:14 +000041 int i = INTEGER; // the value was exported, the macro was not.
Douglas Gregorc83de302012-09-25 15:44:52 +000042 i += macros; // expanded from __MODULE__ within the 'macros' module.
Douglas Gregord7910e92011-09-14 22:14:14 +000043}
Douglas Gregorc83de302012-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 Gregor5a4649b2012-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)
68@__experimental_modules_import macros_left;
69
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
82#ifdef TOP_LEFT_UNDEF
83# error TOP_LEFT_UNDEF should not be visible
84#endif
85
86void test1() {
87 int i;
88 TOP_RIGHT_REDEF *ip = &i;
89}
90
91#define LEFT_RIGHT_DIFFERENT2 double // FIXME: expected-warning{{'LEFT_RIGHT_DIFFERENT2' macro redefined}}
92
93// Import right module (which also imports top)
94@__experimental_modules_import macros_right;
95
96#undef LEFT_RIGHT_DIFFERENT3
97
98#ifndef LEFT
99# error LEFT should be visible
100#endif
101
102#ifndef RIGHT
103# error RIGHT should be visible
104#endif
105
106#ifndef TOP
107# error TOP should be visible
108#endif
109
110#ifndef TOP_LEFT_UNDEF
111# error TOP_LEFT_UNDEF should be visible
112#endif
113
114void test2() {
115 int i;
116 float f;
117 double d;
Douglas Gregor5968b1b2012-10-11 21:07:39 +0000118 TOP_RIGHT_REDEF *ip = &i; // expected-warning{{ambiguous expansion of macro 'TOP_RIGHT_REDEF'}}
Douglas Gregor5a4649b2012-10-11 00:46:49 +0000119
120 LEFT_RIGHT_IDENTICAL *ip2 = &i;
Douglas Gregor5968b1b2012-10-11 21:07:39 +0000121 LEFT_RIGHT_DIFFERENT *fp = &f; // expected-warning{{ambiguous expansion of macro 'LEFT_RIGHT_DIFFERENT'}}
122 LEFT_RIGHT_DIFFERENT2 *dp = &d;
Douglas Gregor5a4649b2012-10-11 00:46:49 +0000123 int LEFT_RIGHT_DIFFERENT3;
124}
125
126#define LEFT_RIGHT_DIFFERENT double // FIXME: expected-warning{{'LEFT_RIGHT_DIFFERENT' macro redefined}}
127
128void test3() {
129 double d;
130 LEFT_RIGHT_DIFFERENT *dp = &d; // okay
131}