projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a7e2dd4
)
Simplify testcase a bit
author
Chris Lattner
<sabre@nondot.org>
Tue, 30 Jul 2002 06:07:16 +0000
(06:07 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Tue, 30 Jul 2002 06:07:16 +0000
(06:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3150
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/CFrontend/2002-07-30-SubregSetAssertion.c
patch
|
blob
|
history
diff --git
a/test/CFrontend/2002-07-30-SubregSetAssertion.c
b/test/CFrontend/2002-07-30-SubregSetAssertion.c
index 5316e74876b9d9ccb49749b6e0ace587a08c4247..20314bfdfa7da10cc65a258e55f916f907732015 100644
(file)
--- a/
test/CFrontend/2002-07-30-SubregSetAssertion.c
+++ b/
test/CFrontend/2002-07-30-SubregSetAssertion.c
@@
-1,13
+1,9
@@
union X {
- //char C;
- //int A;
void *B;
};
-union X foo(union X A) {
- //A.C = 123;
- //A.A = 39249;
- A.B = (void*)123040123321;
- return A;
+union X void foo() {
+ union X A;
+ A.B = (void*)123
}