From 556b50c1932cb8e748a37941265e42639d9114b9 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 5 Mar 2003 23:02:25 +0000 Subject: [PATCH] Add a link to source of inspiration git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5707 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/InstCombine/pow.ll | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/Transforms/InstCombine/pow.ll b/test/Transforms/InstCombine/pow.ll index ca0a98a8085..9a3ca7e6f9f 100644 --- a/test/Transforms/InstCombine/pow.ll +++ b/test/Transforms/InstCombine/pow.ll @@ -1,4 +1,7 @@ ; Testcase for calls to the standard C "pow" function +; +; Equivalent to: http://gcc.gnu.org/ml/gcc-patches/2003-02/msg01786.html + ; RUN: if as < %s | opt -instcombine | dis | grep 'call double %pow' ; RUN: then exit 1 ; RUN: else exit 0