teak-llvm/clang/test/CodeGen/hidden-alias-to-internal-function.c
Duncan P. N. Exon Smith 6f782b12aa Fix testcase from r209228
llvm-svn: 209229
2014-05-20 19:20:23 +00:00

9 lines
318 B
C

// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm -o - -x c %s | FileCheck %s
// Reproduce the crash in PR19760.
static void foo(void) {}
void bar(void) __attribute__((alias("foo")))
__attribute__((visibility("hidden")));
// CHECK: @bar = hidden alias void ()* @foo
// CHECK: define internal void @foo()