aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend/2002-05-24-Alloca.c
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2005-04-23 21:26:11 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2005-04-23 21:26:11 +0000
commitb02fbfc485a68cebeede24810b0cd8f0d97c9e51 (patch)
treec44f886c776fce1bb30ce3e77db96f879cadbe7d /test/CFrontend/2002-05-24-Alloca.c
parentcc1f24585e7d23fd6622c17099159cdc038ee618 (diff)
downloadexternal_llvm-b02fbfc485a68cebeede24810b0cd8f0d97c9e51.zip
external_llvm-b02fbfc485a68cebeede24810b0cd8f0d97c9e51.tar.gz
external_llvm-b02fbfc485a68cebeede24810b0cd8f0d97c9e51.tar.bz2
Eliminate tabs and trailing spaces
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21479 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CFrontend/2002-05-24-Alloca.c')
-rw-r--r--test/CFrontend/2002-05-24-Alloca.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CFrontend/2002-05-24-Alloca.c b/test/CFrontend/2002-05-24-Alloca.c
index 0a44db1..ac5b78d 100644
--- a/test/CFrontend/2002-05-24-Alloca.c
+++ b/test/CFrontend/2002-05-24-Alloca.c
@@ -5,7 +5,7 @@
#include <stdlib.h>
int main(int argc, char **argv) {
- char *C = (char*)alloca(argc);
- strcpy(C, argv[0]);
- puts(C);
+ char *C = (char*)alloca(argc);
+ strcpy(C, argv[0]);
+ puts(C);
}