blob: 7a32dc08db01661850a983e2ec59dfa939c4efd9 [file] [log] [blame]
Tanya Lattner2393a242004-11-06 23:08:26 +00001; RUN: llvm-as -f %s -o - | llc
2
Vikram S. Adve46721dd2003-07-29 14:02:40 +00003;; Date: Jul 29, 2003.
4;; From: test/Programs/MultiSource/Ptrdist-bc
5;; Function: ---
6;; Global: %yy_ec = internal constant [256 x sbyte] ...
7;; A subset of this array is used in the test below.
8;;
9;; Error: Character '\07' was being emitted as '\a', at yy_ec[38].
10;; When loaded, this returned the value 97 ('a'), instead of 7.
11;;
12;; Incorrect LLC Output for the array yy_ec was:
13;; yy_ec_1094:
Tanya Lattner12ff9682004-11-06 20:38:27 +000014;; XFAIL: darwin
Vikram S. Adve46721dd2003-07-29 14:02:40 +000015;; .ascii "\000\001\001\001\001\001\001\001\001\002\003\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\002\004\005\001\001\006\a\001\b\t\n\v\f\r\016\017\020\020\020\020\020\020\020\020\020\020\001\021\022\023\024\001\001\025\025\025\025\025\025\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\026\027\030\031\032\001\033\034\035\036\037 !\"#$%&'()*+,-./$0$1$234\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001\001"
16;;
17
18
19%yy_ec = internal constant [6 x sbyte] c"\06\07\01\08\01\09"
20
21%.str_3 = internal constant [8 x sbyte] c"[%d] = \00"
22%.str_4 = internal constant [4 x sbyte] c"%d\0A\00"
23
24implementation
25
26declare int %printf(sbyte*, ...)
27
28int %main() {
29entry:
30 br label %loopentry
31loopentry:
32 %i = phi long [0, %entry], [%inc.i, %loopentry]
33 %cptr = getelementptr [6 x sbyte]* %yy_ec, long 0, long %i
34 %c = load sbyte* %cptr
35 %ignore = call int (sbyte*, ...)* %printf( sbyte* getelementptr ([8 x sbyte]* %.str_3, long 0, long 0), long %i)
36 %ignore2 = call int (sbyte*, ...)* %printf( sbyte* getelementptr ([4 x sbyte]* %.str_4, long 0, long 0), sbyte %c)
37 %inc.i = add long %i, 1
38 %done = setle long %inc.i, 5
39 br bool %done, label %loopentry, label %exit.1
40exit.1:
41 ret int 0
42};