diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2005-04-23 21:26:11 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2005-04-23 21:26:11 +0000 |
commit | b02fbfc485a68cebeede24810b0cd8f0d97c9e51 (patch) | |
tree | c44f886c776fce1bb30ce3e77db96f879cadbe7d /test/CFrontend/2002-08-02-UnionTest.c | |
parent | cc1f24585e7d23fd6622c17099159cdc038ee618 (diff) | |
download | external_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-08-02-UnionTest.c')
-rw-r--r-- | test/CFrontend/2002-08-02-UnionTest.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/CFrontend/2002-08-02-UnionTest.c b/test/CFrontend/2002-08-02-UnionTest.c index b9e2c2e..bc44e46 100644 --- a/test/CFrontend/2002-08-02-UnionTest.c +++ b/test/CFrontend/2002-08-02-UnionTest.c @@ -8,12 +8,12 @@ union X { char X; void *B; int a, b, c, d;}; union X foo() { - union X Global; - Global.B = (void*)123; /* Interesting part */ - return Global; + union X Global; + Global.B = (void*)123; /* Interesting part */ + return Global; } void main() { - union X test = foo(); - printf("0x%p", test.B); + union X test = foo(); + printf("0x%p", test.B); } |