mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-27 23:38:59 -04:00
12 lines
185 B
C
12 lines
185 B
C
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
|
|
|
|
int x;
|
|
int y(void);
|
|
void foo();
|
|
void FUNC() {
|
|
// CHECK: [[call:%.*]] = call i32 @y
|
|
if (__builtin_expect (x, y()))
|
|
foo ();
|
|
}
|
|
|