summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2006-02-17 06:24:31 +0000
committerNate Begeman <natebegeman@mac.com>2006-02-17 06:24:31 +0000
commit8ec18177da2fe68b59ec5f4c6ca6e8e1a46d6739 (patch)
treeafdee7f0f31e42b8314e77d41f59d8c7df5a160f /test
parentb5fefc732c116ded9e431f0c68a748c699a97e3a (diff)
downloadllvm-8ec18177da2fe68b59ec5f4c6ca6e8e1a46d6739.tar.gz
llvm-8ec18177da2fe68b59ec5f4c6ca6e8e1a46d6739.tar.bz2
llvm-8ec18177da2fe68b59ec5f4c6ca6e8e1a46d6739.tar.xz
Fix a comment sabre noticed :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26257 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/PowerPC/addc.ll2
-rw-r--r--test/CodeGen/PowerPC/subc.ll2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/PowerPC/addc.ll b/test/CodeGen/PowerPC/addc.ll
index fb4b89fe15..dbf19d9f8c 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 9e64c2cd43..697a9341cf 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 &&