diff options
-rw-r--r-- | test/CodeGen/long-double-x86.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/long-double-x86.c b/test/CodeGen/long-double-x86.c index 88ac0c9268..8954042afd 100644 --- a/test/CodeGen/long-double-x86.c +++ b/test/CodeGen/long-double-x86.c @@ -1,4 +1,4 @@ // RUN: clang %s -emit-llvm -o - -triple=i686-apple-darwin9 | grep x86_fp80 long double x = 0; -int checksize[sizeof(x) == 12 ? 1 : -1]; +int checksize[sizeof(x) == 16 ? 1 : -1]; |