mirror of
https://github.com/opnsense/src.git
synced 2026-03-18 08:41:30 -04:00
11 lines
289 B
LLVM
11 lines
289 B
LLVM
; RUN: llvm-as < %s | opt -simplifycfg | llvm-dis | not grep br
|
|
|
|
define void @foo(i1 %C, i32* %P) {
|
|
br i1 %C, label %T, label %F
|
|
T: ; preds = %0
|
|
store i32 7, i32* %P
|
|
ret void
|
|
F: ; preds = %0
|
|
store i32 7, i32* %P
|
|
ret void
|
|
}
|