diff options
author | John McCall <rjmccall@apple.com> | 2010-02-28 02:51:25 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-02-28 02:51:25 +0000 |
commit | dcb9a7ad3d2db5f6f4dd9d1632c78645656ff678 (patch) | |
tree | 7c4c61e7a7fdf82e76ac20e04481dbb5f6aeea21 /llvm/test/Transforms/InstCombine/2009-01-19-fmod-constant-float-specials.ll | |
parent | abb1c7912ecdc61f04635ad46fce2f5a830d3670 (diff) | |
download | bcm5719-llvm-dcb9a7ad3d2db5f6f4dd9d1632c78645656ff678.tar.gz bcm5719-llvm-dcb9a7ad3d2db5f6f4dd9d1632c78645656ff678.zip |
Teach APFloat how to create both QNaNs and SNaNs and with arbitrary-width
payloads. APFloat's internal folding routines always make QNaNs now,
instead of sometimes making QNaNs and sometimes SNaNs depending on the
type.
llvm-svn: 97364
Diffstat (limited to 'llvm/test/Transforms/InstCombine/2009-01-19-fmod-constant-float-specials.ll')
-rw-r--r-- | llvm/test/Transforms/InstCombine/2009-01-19-fmod-constant-float-specials.ll | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/test/Transforms/InstCombine/2009-01-19-fmod-constant-float-specials.ll b/llvm/test/Transforms/InstCombine/2009-01-19-fmod-constant-float-specials.ll index 79a2f1fd8eb..142134791ef 100644 --- a/llvm/test/Transforms/InstCombine/2009-01-19-fmod-constant-float-specials.ll +++ b/llvm/test/Transforms/InstCombine/2009-01-19-fmod-constant-float-specials.ll @@ -1,5 +1,4 @@ -; RUN: opt < %s -simplifycfg -instcombine -S | grep 0x7FF8000000000000 | count 7 -; RUN: opt < %s -simplifycfg -instcombine -S | grep 0x7FF00000FFFFFFFF | count 5 +; RUN: opt < %s -simplifycfg -instcombine -S | grep 0x7FF8000000000000 | count 12 ; RUN: opt < %s -simplifycfg -instcombine -S | grep {0\\.0} | count 3 ; RUN: opt < %s -simplifycfg -instcombine -S | grep {3\\.5} | count 1 ; |