rename C files to end with .c
authorChris Lattner <sabre@nondot.org>
Sat, 9 Jun 2007 06:10:47 +0000 (06:10 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 9 Jun 2007 06:10:47 +0000 (06:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37535 91177308-0d34-0410-b5e6-96231b3b80d8

test/CFrontend/2007-04-24-bit-not-expr.c [new file with mode: 0644]
test/CFrontend/2007-04-24-bit-not-expr.ll [deleted file]
test/CFrontend/2007-04-24-str-const.c [new file with mode: 0644]
test/CFrontend/2007-04-24-str-const.ll [deleted file]
test/CFrontend/2007-05-11-str-const.c [new file with mode: 0644]
test/CFrontend/2007-05-11-str-const.ll [deleted file]

diff --git a/test/CFrontend/2007-04-24-bit-not-expr.c b/test/CFrontend/2007-04-24-bit-not-expr.c
new file mode 100644 (file)
index 0000000..1c27f18
--- /dev/null
@@ -0,0 +1,7 @@
+// PR 1346
+// RUN: %llvmgcc -c %s  -o /dev/null
+extern bar(void *);
+
+void f(void *cd) {
+  bar(((void *)((unsigned long)(cd) ^ -1)));
+}
diff --git a/test/CFrontend/2007-04-24-bit-not-expr.ll b/test/CFrontend/2007-04-24-bit-not-expr.ll
deleted file mode 100644 (file)
index 1c27f18..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-// PR 1346
-// RUN: %llvmgcc -c %s  -o /dev/null
-extern bar(void *);
-
-void f(void *cd) {
-  bar(((void *)((unsigned long)(cd) ^ -1)));
-}
diff --git a/test/CFrontend/2007-04-24-str-const.c b/test/CFrontend/2007-04-24-str-const.c
new file mode 100644 (file)
index 0000000..4c109c4
--- /dev/null
@@ -0,0 +1,17 @@
+// RUN: %llvmgcc -c %s  -o /dev/null
+static char *str;
+
+static const struct {
+ const char *name;
+ unsigned type;
+} scan_special[] = {
+ {"shift", 1},
+ {0, 0}
+};
+
+static void
+sb(void)
+{
+ while (*str == ' ' || *str == '\t')
+  str++;
+}
diff --git a/test/CFrontend/2007-04-24-str-const.ll b/test/CFrontend/2007-04-24-str-const.ll
deleted file mode 100644 (file)
index 4c109c4..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-// RUN: %llvmgcc -c %s  -o /dev/null
-static char *str;
-
-static const struct {
- const char *name;
- unsigned type;
-} scan_special[] = {
- {"shift", 1},
- {0, 0}
-};
-
-static void
-sb(void)
-{
- while (*str == ' ' || *str == '\t')
-  str++;
-}
diff --git a/test/CFrontend/2007-05-11-str-const.c b/test/CFrontend/2007-05-11-str-const.c
new file mode 100644 (file)
index 0000000..48deddb
--- /dev/null
@@ -0,0 +1,5 @@
+// RUN: %llvmgcc -c -g %s  -o /dev/null
+
+static unsigned char out[]={0,1};
+static const unsigned char str1[]="1";
+
diff --git a/test/CFrontend/2007-05-11-str-const.ll b/test/CFrontend/2007-05-11-str-const.ll
deleted file mode 100644 (file)
index 48deddb..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-// RUN: %llvmgcc -c -g %s  -o /dev/null
-
-static unsigned char out[]={0,1};
-static const unsigned char str1[]="1";
-