blob: 37e37659d70c607b3c718bc347c4751a9bc7e847 [file] [log] [blame]
Duncan P. N. Exon Smithd22b97c2014-05-20 19:04:31 +00001// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-obj -o - -x c %s
2// Reproduce the crash in PR19760.
3static void foo(void) {}
4void bar(void) __attribute__((alias("foo")))
5__attribute__((visibility("hidden")));
6
7// CHECK: @bar = hidden alias void ()* @foo
8// CHECK: define internal void @foo()