diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-04-22 22:09:39 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-04-22 22:09:39 +0000 |
commit | 2e43ab535b9c4cc4a91eccacb00499b99bd78bcc (patch) | |
tree | 651e7d8b95b1b90b43706894db2b0e89c9b423f1 | |
parent | 91cb0eea67cafbb9da0fec756719354ce922437e (diff) | |
download | bcm5719-llvm-2e43ab535b9c4cc4a91eccacb00499b99bd78bcc.tar.gz bcm5719-llvm-2e43ab535b9c4cc4a91eccacb00499b99bd78bcc.zip |
Clean up and de-XFAIL-ify PCH test for external definitions
llvm-svn: 69831
-rw-r--r-- | clang/test/PCH/external-defs.c | 4 | ||||
-rw-r--r-- | clang/test/PCH/external-defs.h | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/clang/test/PCH/external-defs.c b/clang/test/PCH/external-defs.c index 251a10d9ce6..b7eb700e6b3 100644 --- a/clang/test/PCH/external-defs.c +++ b/clang/test/PCH/external-defs.c @@ -3,8 +3,6 @@ // RUN: clang-cc -triple x86_64-apple-darwin9 -include-pch %t.pch -emit-llvm -o %t %s && // RUN: grep "@x = common global i32 0" %t | count 1 && -// RUN: grep "@y = global i32 17" %t | count 1 && -// RUN: grep "@d = .*1.742" %t | count 1 && // RUN: grep "@z" %t | count 0 && // RUN: grep "@x2 = global i32 19" %t | count 1 && @@ -19,5 +17,3 @@ int incomplete_array3[]; struct S { int x, y; }; - -// XFAIL diff --git a/clang/test/PCH/external-defs.h b/clang/test/PCH/external-defs.h index bb51a9d64b9..657b47bcc14 100644 --- a/clang/test/PCH/external-defs.h +++ b/clang/test/PCH/external-defs.h @@ -4,10 +4,6 @@ int x; int x2; -// Definitions -int y = 17; -double d = 17.42; - // Should not show up static int z; |