repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix a globalopt crash on two Adobe-C++ testcases that the recent
[llvm.git]
/
test
/
Transforms
/
FunctionAttrs
/
2010-10-30-volatile.ll
blob
f21fabc493c73f9c35d3615065976d1868dad07e
1
; RUN: opt < %s -functionattrs -S | FileCheck %s
2
; PR8279
3
4
@g = constant i32 1
5
6
define void @foo() {
7
; CHECK: void @foo() {
8
%tmp = volatile load i32* @g
9
ret void
10
}