diff options
author | Pavel Labath <labath@google.com> | 2018-07-19 14:05:22 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2018-07-19 14:05:22 +0000 |
commit | 45a8dfacf4f89cb64948b2f6bdb60c3df0493f77 (patch) | |
tree | ea19a950b8faac8be2f4eb538397cf3db1d82850 /clang/test/CodeGenCXX/float16-declarations.cpp | |
parent | a0da24683b2bf40a3c16077834ca2ac98622591c (diff) | |
download | bcm5719-llvm-45a8dfacf4f89cb64948b2f6bdb60c3df0493f77.tar.gz bcm5719-llvm-45a8dfacf4f89cb64948b2f6bdb60c3df0493f77.zip |
[CodeGen] Disable aggressive structor optimizations at -O0, take 3
The previous version of this patch (r332839) was reverted because it was
causing "definition with same mangled name as another definition" errors
in some module builds. This was caused by an unrelated bug in module
importing which it exposed. The importing problem was fixed in r336240,
so this recommits the original patch (r332839).
Differential Revision: https://reviews.llvm.org/D46685
llvm-svn: 337456
Diffstat (limited to 'clang/test/CodeGenCXX/float16-declarations.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/float16-declarations.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/float16-declarations.cpp b/clang/test/CodeGenCXX/float16-declarations.cpp index e82c05ec8c8..1d6999fef07 100644 --- a/clang/test/CodeGenCXX/float16-declarations.cpp +++ b/clang/test/CodeGenCXX/float16-declarations.cpp @@ -103,7 +103,7 @@ int main(void) { C1 c1(f1l); // CHECK-DAG: [[F1L:%[a-z0-9]+]] = load half, half* %{{.*}}, align 2 -// CHECK-DAG: call void @_ZN2C1C2EDF16_(%class.C1* %{{.*}}, half %{{.*}}) +// CHECK-DAG: call void @_ZN2C1C1EDF16_(%class.C1* %{{.*}}, half %{{.*}}) S1<_Float16> s1 = { 132.f16 }; // CHECK-DAG: @_ZZ4mainE2s1 = private unnamed_addr constant %struct.S1 { half 0xH5820 }, align 2 |