| 1 | // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s |
|---|---|
| 2 | |
| 3 | // CHECK: @a = external {{(dso_local )?}}constan |
| 4 | extern const int a[]; // 'a' should be marked constant even though it's external! |
| 5 | int foo () { |
| 6 | return a[0]; |
| 7 | } |
| 8 |
| 1 | // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s |
|---|---|
| 2 | |
| 3 | // CHECK: @a = external {{(dso_local )?}}constan |
| 4 | extern const int a[]; // 'a' should be marked constant even though it's external! |
| 5 | int foo () { |
| 6 | return a[0]; |
| 7 | } |
| 8 |