3d1dcd9bfd
http://llvm.org/svn/llvm-project/cfe/branches/release_28@114020 Approved by: rpaulo (mentor)
11 lines
426 B
C++
11 lines
426 B
C++
// Test this without pch.
|
|
// RUN: %clang_cc1 -include %S/cxx-required-decls.h %s -emit-llvm -o - | FileCheck %s
|
|
|
|
// Test with pch.
|
|
// RUN: %clang_cc1 -x c++-header -emit-pch -o %t %S/cxx-required-decls.h
|
|
// RUN: %clang_cc1 -include-pch %t %s -emit-llvm -o - | FileCheck %s
|
|
|
|
// CHECK: @_ZL5globS = internal global %struct.S zeroinitializer
|
|
// CHECK: @_ZL3bar = internal global i32 0, align 4
|
|
// CHECK: @glob_var = global i32 0
|