diff options
Diffstat (limited to 'clang/test/Frontend/ast-codegen.c')
-rw-r--r-- | clang/test/Frontend/ast-codegen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Frontend/ast-codegen.c b/clang/test/Frontend/ast-codegen.c index 4a3f8a3b79f..e1140fdd8b2 100644 --- a/clang/test/Frontend/ast-codegen.c +++ b/clang/test/Frontend/ast-codegen.c @@ -5,9 +5,9 @@ // CHECK: module asm "foo" __asm__("foo"); -// CHECK: @g0 = common global i32 0, align 4 +// CHECK: @g0 = common dso_local global i32 0, align 4 int g0; -// CHECK: define i32 @f0() +// CHECK: define dso_local i32 @f0() int f0() { } |