aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PowerPC/vector.ll
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2007-09-05 17:50:36 +0000
committerDale Johannesen <dalej@apple.com>2007-09-05 17:50:36 +0000
commitd727a2b6422017a951e1e5d43b8b579a538d3ef5 (patch)
tree24eff24c3171c525448ce5326e6e5c549e4525dc /test/CodeGen/PowerPC/vector.ll
parentea5e9dee8697c1fb92e7bae88809e89235aba197 (diff)
downloadexternal_llvm-d727a2b6422017a951e1e5d43b8b579a538d3ef5.zip
external_llvm-d727a2b6422017a951e1e5d43b8b579a538d3ef5.tar.gz
external_llvm-d727a2b6422017a951e1e5d43b8b579a538d3ef5.tar.bz2
Change all floating constants that are not exactly
representable to use hex format. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41722 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/vector.ll')
-rw-r--r--test/CodeGen/PowerPC/vector.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/PowerPC/vector.ll b/test/CodeGen/PowerPC/vector.ll
index f8dbbb0..789b543 100644
--- a/test/CodeGen/PowerPC/vector.ll
+++ b/test/CodeGen/PowerPC/vector.ll
@@ -65,7 +65,7 @@ void %test_div(%f8 *%P, %f8* %Q, %f8 *%S) {
void %test_cst(%f4 *%P, %f4 *%S) {
%p = load %f4* %P
- %R = add %f4 %p, <float 0.1, float 1.0, float 2.0, float 4.5>
+ %R = add %f4 %p, <float 0x3FB99999A0000000, float 1.0, float 2.0, float 4.5>
store %f4 %R, %f4 *%S
ret void
}