// Check that the CHECK lines are generated before the definition and not the declaration
// RUN: %clang_cc1 -no-opaque-pointers -triple x86_64-unknown-linux-gnu %s -emit-llvm -o - | FileCheck %s
intfoo(intarg);voidempty_function(void);intmain(void){empty_function();returnfoo(1);}intfoo(intarg){return arg;}voidempty_function(void){}