diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-09-14 20:57:14 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-09-14 20:57:14 +0000 |
commit | 5ed6277d2e8f621ff1edb09897a23682fc034d6e (patch) | |
tree | 31e277fdbca5b4c22f9e7b6e698f7e281bbc08ea /test/Modules/macros.c | |
parent | b50dd472cd6c8b13213626f13a928dbe41581f09 (diff) |
Revert my exported-macro hackery. Something is amiss
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@139734 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Modules/macros.c')
-rw-r--r-- | test/Modules/macros.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/Modules/macros.c b/test/Modules/macros.c index 8fefe7a9cf..578e09fbda 100644 --- a/test/Modules/macros.c +++ b/test/Modules/macros.c @@ -9,8 +9,6 @@ #__export_macro__ INTEGER #__export_macro__ DOUBLE -int (INTEGER); - #else __import_module__ macros; @@ -32,7 +30,4 @@ DOUBLE *dp = &d; #__export_macro__ WIBBLE // expected-error{{no macro named 'WIBBLE' to export}} -void f() { - int i = INTEGER; // the value was exported, the macro was not. -} #endif |