view clang/test/CodeGen/PR2743-reference-missing-static.c @ 207:2e18cbf3894f

LLVM12
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 08 Jun 2021 06:07:14 +0900
parents 1d019706d866
children c4bab56944e8
line wrap: on
line source

// RUN: %clang_cc1 -emit-llvm -o %t %s
// PR2743
// <rdr://6094512>

/* CodeGen should handle this even if it makes it past
   sema. Unfortunately this test will become useless once sema starts
   rejecting this. */

static void e0();
void f0() { e0(); }

inline void e1();
void f1() { e1(); }

void e2() __attribute__((weak));
void f2() { e2(); }