diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-17 00:03:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-17 00:03:56 +0000 |
commit | 2cb3a7bf2dec80f32241148c0cb2ff4dde85abc7 (patch) | |
tree | 650edbb5f0c7e9b202524d5bc8b5b115419e1825 /test/C++Frontend | |
parent | a0145ccb20cd7ebe2ddeaa37afd74e39bf9e963b (diff) | |
download | external_llvm-2cb3a7bf2dec80f32241148c0cb2ff4dde85abc7.zip external_llvm-2cb3a7bf2dec80f32241148c0cb2ff4dde85abc7.tar.gz external_llvm-2cb3a7bf2dec80f32241148c0cb2ff4dde85abc7.tar.bz2 |
Arg, sparc doesn't have correct things in math.h!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6729 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/C++Frontend')
-rw-r--r-- | test/C++Frontend/2003-05-21-UnionBitfields.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/C++Frontend/2003-05-21-UnionBitfields.c b/test/C++Frontend/2003-05-21-UnionBitfields.c index b9d954a..d4da0d6 100644 --- a/test/C++Frontend/2003-05-21-UnionBitfields.c +++ b/test/C++Frontend/2003-05-21-UnionBitfields.c @@ -17,6 +17,6 @@ int target_isinf(double x) { } int main() { - printf("%d %d\n", target_isinf(1234.42), target_isinf(INFINITY)); + printf("%d %d\n", target_isinf(1234.42), target_isinf(1.0/1.0e-1000)); return 0; } |