blob: 8980b60cf68d1f36fbf283cfbd88af0a44ad9362 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// RUN: %clang_cc1 -g -emit-llvm %s -o - | FileCheck %s
// Test to check intentionally empty linkage name for a static variable.
// Radar 7651244.
static int foo(int a)
{
static int b = 1;
return b+a;
}
int main() {
int j = foo(1);
return 0;
}
// CHECK: !"0x34\00b\00b\00\00{{.*}}",
|