blob: 076eec4bf268fdbad58ae534c3c49e15a397d884 [file] [log] [blame]
Douglas Gregor08142532011-08-26 23:56:07 +00001
2
3
Douglas Gregor4dd3e942011-08-19 02:29:29 +00004// in diamond-bottom.h: expected-note{{passing argument to parameter 'x' here}}
Douglas Gregor08142532011-08-26 23:56:07 +00005
Ted Kremenekc1e4dd02012-03-01 22:07:04 +00006@__experimental_modules_import diamond_bottom;
Douglas Gregor08142532011-08-26 23:56:07 +00007
Douglas Gregor4dd3e942011-08-19 02:29:29 +00008void test_diamond(int i, float f, double d, char c) {
9 top(&i);
10 left(&f);
11 right(&d);
12 bottom(&c);
13 bottom(&d); // expected-warning{{incompatible pointer types passing 'double *' to parameter of type 'char *'}}
Douglas Gregorab443b92011-08-20 04:39:52 +000014
15 // Names in multiple places in the diamond.
16 top_left(&c);
Douglas Gregorb36fc532011-08-20 05:09:43 +000017
18 left_and_right(&i);
19 struct left_and_right lr;
20 lr.left = 17;
Douglas Gregor4dd3e942011-08-19 02:29:29 +000021}
22
Douglas Gregor2b20cb82011-11-16 00:09:06 +000023// RUN: rm -rf %t
Douglas Gregorda82e702012-01-03 19:32:59 +000024// RUN: %clang_cc1 -fmodules -x objective-c -emit-module -fmodule-cache-path %t -fmodule-name=diamond_top %S/Inputs/module.map
25// RUN: %clang_cc1 -fmodules -x objective-c -emit-module -fmodule-cache-path %t -fmodule-name=diamond_left %S/Inputs/module.map
26// RUN: %clang_cc1 -fmodules -x objective-c -emit-module -fmodule-cache-path %t -fmodule-name=diamond_right %S/Inputs/module.map
27// RUN: %clang_cc1 -fmodules -x objective-c -emit-module -fmodule-cache-path %t -fmodule-name=diamond_bottom %S/Inputs/module.map
28// RUN: %clang_cc1 -fmodules -x objective-c -fmodule-cache-path %t %s -verify
29// FIXME: When we have a syntax for modules in C, use that.