repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2003-11-03-AddrArrayElement.c
blob
50e81d6fd86a25aeccb6757019456c3459b0db11
1
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2
3
// This should be turned into a tasty getelementptr instruction, not a nasty
4
// series of casts and address arithmetic.
5
6
char
Global
[
100
];
7
8
char
*
test1
(
unsigned
i
) {
9
// CHECK: getelementptr
10
return
&
Global
[
i
];
11
}