aboutsummaryrefslogtreecommitdiff
path: root/test/Integer/undefined_bt.ll
diff options
context:
space:
mode:
authorZhou Sheng <zhousheng00@gmail.com>2007-01-19 14:30:59 +0000
committerZhou Sheng <zhousheng00@gmail.com>2007-01-19 14:30:59 +0000
commit9160a841ac8653f7e8549f06705e8572ef8e1db4 (patch)
tree845983d46ef1dd1a65a1a078c6c348fbf0888e59 /test/Integer/undefined_bt.ll
parent4da6420a07d4b91aa1270e18cc970e32c53b193e (diff)
Cover non-byte-width BATs situation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33356 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Integer/undefined_bt.ll')
-rw-r--r--test/Integer/undefined_bt.ll12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/Integer/undefined_bt.ll b/test/Integer/undefined_bt.ll
index 3a413d409f..94f51905cd 100644
--- a/test/Integer/undefined_bt.ll
+++ b/test/Integer/undefined_bt.ll
@@ -3,17 +3,17 @@
; RUN: diff %t1.ll %t2.ll
-%X = global i32 undef
+%X = global i31 undef
implementation
declare i32 "atoi"(i8 *)
-define i32 %test() {
- ret i32 undef
+define i63 %test() {
+ ret i63 undef
}
-define i32 %test2() {
- %X = add i32 undef, 1
- ret i32 %X
+define i31 %test2() {
+ %X = add i31 undef, 1
+ ret i31 %X
}