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:
ec91ccb
)
Fix a warning.
author
Chris Lattner
<sabre@nondot.org>
Fri, 20 Jun 2008 05:31:04 +0000
(
05:31
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Fri, 20 Jun 2008 05:31:04 +0000
(
05:31
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52528
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/FrontendC/2007-09-05-ConstCtor.c
patch
|
blob
|
history
diff --git
a/test/FrontendC/2007-09-05-ConstCtor.c
b/test/FrontendC/2007-09-05-ConstCtor.c
index 6d9fbd5c14b873a173ac38b90aa17350634b88d4..8e0e9945ffaa97fdeec2b094c0e083b5eb8022fa 100644
(file)
--- a/
test/FrontendC/2007-09-05-ConstCtor.c
+++ b/
test/FrontendC/2007-09-05-ConstCtor.c
@@
-1,7
+1,5
@@
// RUN: %llvmgcc -xc -Os -c %s -o /dev/null
// PR1641
-// XFAIL: *
-// See PR2452
struct A {
unsigned long l;
@@
-10,7
+8,7
@@
struct A {
void bar(struct A *a);
void bork() {
- const unsigned long vcgt =
'vcgt'
;
+ const unsigned long vcgt =
1234
;
struct A a = { vcgt };
bar(&a);
}