From: Nate Begeman Date: Fri, 17 Feb 2006 06:24:31 +0000 (+0000) Subject: Fix a comment sabre noticed :) X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8ec18177da2fe68b59ec5f4c6ca6e8e1a46d6739;p=oota-llvm.git Fix a comment sabre noticed :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26257 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/PowerPC/addc.ll b/test/CodeGen/PowerPC/addc.ll index fb4b89fe155..dbf19d9f8ca 100644 --- a/test/CodeGen/PowerPC/addc.ll +++ b/test/CodeGen/PowerPC/addc.ll @@ -1,4 +1,4 @@ -; All of these ands and shifts should be folded into rlwimi's +; All of these should be codegen'd without loading immediates ; RUN: llvm-as < %s | llc -march=ppc32 | grep addc | wc -l | grep 1 && ; RUN: llvm-as < %s | llc -march=ppc32 | grep adde | wc -l | grep 1 && ; RUN: llvm-as < %s | llc -march=ppc32 | grep addze | wc -l | grep 1 && diff --git a/test/CodeGen/PowerPC/subc.ll b/test/CodeGen/PowerPC/subc.ll index 9e64c2cd436..697a9341cf1 100644 --- a/test/CodeGen/PowerPC/subc.ll +++ b/test/CodeGen/PowerPC/subc.ll @@ -1,4 +1,4 @@ -; All of these ands and shifts should be folded into rlwimi's +; All of these should be codegen'd without loading immediates ; RUN: llvm-as < %s | llc -march=ppc32 | grep subfc | wc -l | grep 1 && ; RUN: llvm-as < %s | llc -march=ppc32 | grep subfe | wc -l | grep 1 && ; RUN: llvm-as < %s | llc -march=ppc32 | grep subfze | wc -l | grep 1 &&