diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2014-11-12 23:15:38 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2014-11-12 23:15:38 +0000 |
commit | 50a3cbd7c0258e4887ef6b33532c107095f667e3 (patch) | |
tree | ada5590bb258e2487114adf83bd2b7e793f32da0 /clang/test/CodeGen/complex.c | |
parent | 5de3d9c031bb4b1405f32168524dbc34f21bb897 (diff) | |
download | bcm5719-llvm-50a3cbd7c0258e4887ef6b33532c107095f667e3.tar.gz bcm5719-llvm-50a3cbd7c0258e4887ef6b33532c107095f667e3.zip |
Temporary revert r221818 until all the problems
with objc stuff will be resolved.
llvm-svn: 221829
Diffstat (limited to 'clang/test/CodeGen/complex.c')
-rw-r--r-- | clang/test/CodeGen/complex.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/clang/test/CodeGen/complex.c b/clang/test/CodeGen/complex.c index e6a55ae567d..206db253caa 100644 --- a/clang/test/CodeGen/complex.c +++ b/clang/test/CodeGen/complex.c @@ -98,12 +98,3 @@ void t8() { const _Complex double test9const = 0; _Complex double test9func() { return test9const; } - -// D6217 -void t9() { - // Check for proper type promotion of conditional expression - char c[(int)(sizeof(typeof((0 ? 2.0f : (_Complex double) 2.0f))) - sizeof(_Complex double))]; - // Check for proper codegen - (0 ? 2.0f : (_Complex double) 2.0f); -} - |