diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-08-31 18:19:09 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-08-31 18:19:09 +0000 |
commit | ca97589f7dcc61a56631b5e360831fdd8f2c0968 (patch) | |
tree | d4b7da9866c9b4e701fa3f924dbd658a1bdb9adc /clang/test/Modules/diamond.c | |
parent | df060bc3c2c06d07efa93bf8909971d742dd0cec (diff) | |
download | bcm5719-llvm-ca97589f7dcc61a56631b5e360831fdd8f2c0968.tar.gz bcm5719-llvm-ca97589f7dcc61a56631b5e360831fdd8f2c0968.zip |
Switch __import__ over to __import_module__, so we don't conflict with
existing practice with Python extension modules. Not that Python
extension modules should be using a double-underscored identifier
anyway, but...
llvm-svn: 138870
Diffstat (limited to 'clang/test/Modules/diamond.c')
-rw-r--r-- | clang/test/Modules/diamond.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Modules/diamond.c b/clang/test/Modules/diamond.c index 94381f2033a..6f6ff7bf466 100644 --- a/clang/test/Modules/diamond.c +++ b/clang/test/Modules/diamond.c @@ -3,7 +3,7 @@ // in diamond-bottom.h: expected-note{{passing argument to parameter 'x' here}} -__import__ diamond_bottom; +__import_module__ diamond_bottom; void test_diamond(int i, float f, double d, char c) { top(&i); |