[llvm-commits] [SignlessTypes] CVS: llvm/test/Regression/CodeGen/X86/compare_folding.llx
Reid Spencer
rspencer at reidspencer.com
Sun Oct 29 18:43:34 PST 2006
Sheng,
One of the policies for LLVM is that we *never* commit anything with a
blank log message. All your recent commits were blank. In the future,
please make a detailed summary of your changes. What is needed is some
context on the change. For our work, all your commits should start with:
For PR950:
Then describe the change. This gives other developers a quick way to
review the patch or determine that it is not of interest to them. With
100+ commits a day, this is essential for everyone reviewing code.
Thanks for your cooperation.
Reid.
On Sun, 2006-10-29 at 01:49 -0600, Zhou Sheng wrote:
>
> Changes in directory llvm/test/Regression/CodeGen/X86:
>
> compare_folding.llx updated: 1.3 -> 1.3.2.1
> ---
> Log message:
>
>
>
> ---
> Diffs of the changes: (+4 -4)
>
> compare_folding.llx | 8 ++++----
> 1 files changed, 4 insertions(+), 4 deletions(-)
>
>
> Index: llvm/test/Regression/CodeGen/X86/compare_folding.llx
> diff -u llvm/test/Regression/CodeGen/X86/compare_folding.llx:1.3 llvm/test/Regression/CodeGen/X86/compare_folding.llx:1.3.2.1
> --- llvm/test/Regression/CodeGen/X86/compare_folding.llx:1.3 Wed Oct 11 20:42:03 2006
> +++ llvm/test/Regression/CodeGen/X86/compare_folding.llx Sun Oct 29 01:49:36 2006
> @@ -1,8 +1,8 @@
> -; RUN: llvm-as < %s | llc -march=x86 | grep movsd | wc -l | grep 1 &&
> -; RUN: llvm-as < %s | llc -march=x86 | grep ucomisd
> -declare bool %llvm.isunordered(double,double)
> +; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah | grep movsd | wc -l | grep 1 &&
> +; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah | grep ucomisd
> +declare bool %llvm.isunordered.f64(double,double)
>
> bool %test1(double %X, double %Y) { ;; Returns isunordered(X,Y)
> - %COM = call bool %llvm.isunordered(double %X, double %Y)
> + %COM = call bool %llvm.isunordered.f64(double %X, double %Y)
> ret bool %COM
> }
>
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
More information about the llvm-commits
mailing list