mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 14:17:06 -04:00
8 lines
142 B
LLVM
8 lines
142 B
LLVM
; RUN: opt < %s -dse -S | grep {volatile load}
|
|
|
|
@g_1 = global i32 0
|
|
|
|
define void @foo() nounwind {
|
|
%t = volatile load i32* @g_1
|
|
ret void
|
|
}
|