summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorVikram S. Adve <vadve@cs.uiuc.edu>2003-07-10 19:31:26 +0000
committerVikram S. Adve <vadve@cs.uiuc.edu>2003-07-10 19:31:26 +0000
commit6781cd2bf3a210d1704e9441130dfa54faabcf8e (patch)
treef9b0ed7cb1ecf073bab2867dfee5aae2b7ebeae4 /test
parent6edfe2719597c72d20910cb8396097dd2c5123c7 (diff)
downloadllvm-6781cd2bf3a210d1704e9441130dfa54faabcf8e.tar.gz
llvm-6781cd2bf3a210d1704e9441130dfa54faabcf8e.tar.bz2
llvm-6781cd2bf3a210d1704e9441130dfa54faabcf8e.tar.xz
Just documentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7149 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/Generic/2003-07-08-BadCastToBool.ll23
-rw-r--r--test/LLC/2003-07-08-BadCastToBool.ll23
2 files changed, 46 insertions, 0 deletions
diff --git a/test/CodeGen/Generic/2003-07-08-BadCastToBool.ll b/test/CodeGen/Generic/2003-07-08-BadCastToBool.ll
index 56e02d05b3..5736c951b7 100644
--- a/test/CodeGen/Generic/2003-07-08-BadCastToBool.ll
+++ b/test/CodeGen/Generic/2003-07-08-BadCastToBool.ll
@@ -1,3 +1,26 @@
+;; Date: Jul 8, 2003.
+;; From: test/Programs/MultiSource/Olden-perimeter
+;; Function: int %adj(uint %d.1, uint %ct.1)
+;;
+;; Errors: (1) cast-int-to-bool was being treated as a NOP (i.e., the int
+;; register was treated as effectively true if non-zero).
+;; This cannot be used for later boolean operations.
+;; (2) (A or NOT(B)) was being folded into A orn B, which is ok
+;; for bitwise operations but not booleans! For booleans,
+;; the result has to be compared with 0.
+;;
+;; LLC Output for the basic block (LLVM assembly is shown below):
+;;
+;; .L_adj_7_LL_4:
+;; sethi 0, %i0
+;; subcc %i1, 2, %g0
+;; move %icc, 1, %i0
+;; orn %i0, %i1, %i0
+;; ba .L_adj_7_LL_5
+;; nop
+;;
+
+
target endian = big
target pointersize = 64
diff --git a/test/LLC/2003-07-08-BadCastToBool.ll b/test/LLC/2003-07-08-BadCastToBool.ll
index 56e02d05b3..5736c951b7 100644
--- a/test/LLC/2003-07-08-BadCastToBool.ll
+++ b/test/LLC/2003-07-08-BadCastToBool.ll
@@ -1,3 +1,26 @@
+;; Date: Jul 8, 2003.
+;; From: test/Programs/MultiSource/Olden-perimeter
+;; Function: int %adj(uint %d.1, uint %ct.1)
+;;
+;; Errors: (1) cast-int-to-bool was being treated as a NOP (i.e., the int
+;; register was treated as effectively true if non-zero).
+;; This cannot be used for later boolean operations.
+;; (2) (A or NOT(B)) was being folded into A orn B, which is ok
+;; for bitwise operations but not booleans! For booleans,
+;; the result has to be compared with 0.
+;;
+;; LLC Output for the basic block (LLVM assembly is shown below):
+;;
+;; .L_adj_7_LL_4:
+;; sethi 0, %i0
+;; subcc %i1, 2, %g0
+;; move %icc, 1, %i0
+;; orn %i0, %i1, %i0
+;; ba .L_adj_7_LL_5
+;; nop
+;;
+
+
target endian = big
target pointersize = 64