diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-08-21 02:46:28 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-08-21 02:46:28 +0000 |
commit | 30eb5fa3ba0a3605db877c158a7d115d679147c2 (patch) | |
tree | 8602ac90c0803f93a5d553176f09c649212495cc /clang/test/CodeGen/exprs.c | |
parent | 25f9aaedc62e67dac8a59caeb4d357245b56cdf7 (diff) | |
download | bcm5719-llvm-30eb5fa3ba0a3605db877c158a7d115d679147c2.tar.gz bcm5719-llvm-30eb5fa3ba0a3605db877c158a7d115d679147c2.zip |
Improve test coverage.
llvm-svn: 111712
Diffstat (limited to 'clang/test/CodeGen/exprs.c')
-rw-r--r-- | clang/test/CodeGen/exprs.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/clang/test/CodeGen/exprs.c b/clang/test/CodeGen/exprs.c index 7cc1134077e..c9978b85164 100644 --- a/clang/test/CodeGen/exprs.c +++ b/clang/test/CodeGen/exprs.c @@ -145,3 +145,10 @@ double f13(double X) { // CHECK: fsub double -0.0 return -X; } + +// Check operations on incomplete types. +struct s14; +void f14(struct s13 *a) { + (void) &*a; +} + |