aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-09-26 01:11:57 +0000
committerDan Gohman <gohman@apple.com>2009-09-26 01:11:57 +0000
commit22cb6579b3ab33610f166b264833fa945e8e2ade (patch)
treeec054262506872a9775c9156ef21850441565f22
parenta8fb336c2e7b8beb00d96a0992c41d38f0310a8f (diff)
I put the wrong rdar number in this test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82829 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Transforms/SimplifyLibCalls/pow-to-sqrt.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/SimplifyLibCalls/pow-to-sqrt.ll b/test/Transforms/SimplifyLibCalls/pow-to-sqrt.ll
index cb4abc1709..75e5104d33 100644
--- a/test/Transforms/SimplifyLibCalls/pow-to-sqrt.ll
+++ b/test/Transforms/SimplifyLibCalls/pow-to-sqrt.ll
@@ -1,5 +1,5 @@
; RUN: opt < %s -simplify-libcalls -S | FileCheck %s
-; rdar://7235530
+; rdar://7251832
; SimplifyLibcalls should optimize pow(x, 0.5) to sqrt plus code to handle
; special cases. The readonly attribute on the call should be preserved.