[cfe-commits] r43082 - in /cfe/trunk/test/Sema: id_builtin.m id_not_builtin.m
Steve Naroff
snaroff at apple.com
Wed Oct 17 11:39:04 PDT 2007
Author: snaroff
Date: Wed Oct 17 13:39:04 2007
New Revision: 43082
URL: http://llvm.org/viewvc/llvm-project?rev=43082&view=rev
Log:
rename test file for builtin "id"...
Added:
cfe/trunk/test/Sema/id_builtin.m
Removed:
cfe/trunk/test/Sema/id_not_builtin.m
Added: cfe/trunk/test/Sema/id_builtin.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/id_builtin.m?rev=43082&view=auto
==============================================================================
--- cfe/trunk/test/Sema/id_builtin.m (added)
+++ cfe/trunk/test/Sema/id_builtin.m Wed Oct 17 13:39:04 2007
@@ -0,0 +1,10 @@
+// RUN: clang %s -fsyntax-only -verify
+
+// id is now builtin. There should be no errors.
+id obj;
+
+ at interface Foo
+
+- defaultToId;
+
+ at end
Removed: cfe/trunk/test/Sema/id_not_builtin.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/id_not_builtin.m?rev=43081&view=auto
==============================================================================
--- cfe/trunk/test/Sema/id_not_builtin.m (original)
+++ cfe/trunk/test/Sema/id_not_builtin.m (removed)
@@ -1,10 +0,0 @@
-// RUN: clang %s -fsyntax-only -verify
-
-// id is now builtin. There should be no errors. Should probably remove this file.
-id obj;
-
- at interface Foo
-
-- defaultToId;
-
- at end
More information about the cfe-commits
mailing list