projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a0145cc
)
Arg, sparc doesn't have correct things in math.h!
author
Chris Lattner
<sabre@nondot.org>
Tue, 17 Jun 2003 00:03:56 +0000
(
00:03
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Tue, 17 Jun 2003 00:03:56 +0000
(
00:03
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6729
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/C++Frontend/2003-05-21-UnionBitfields.c
patch
|
blob
|
history
diff --git
a/test/C++Frontend/2003-05-21-UnionBitfields.c
b/test/C++Frontend/2003-05-21-UnionBitfields.c
index b9d954a0ac249831d9e117d5a4296881eb136e8b..d4da0d683cd464852795e677945e339fa93724cd 100644
(file)
--- 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;
}