forked from OSchip/llvm-project
Make a test use a specific C++ dialect
In stack-reuse-miscompile.cpp, the allocas for the temps come out in a different order depending on whether the dialect is C++03 or C++11. Specify C++03 explicitly to avoid depending on the default. Differential Revision: http://reviews.llvm.org/D27956 llvm-svn: 290208
This commit is contained in:
parent
a4549879a5
commit
bd463120ab
|
@ -1,4 +1,4 @@
|
||||||
// RUN: %clang -S -target armv7l-unknown-linux-gnueabihf -emit-llvm -O1 -mllvm -disable-llvm-optzns -S %s -o - | FileCheck %s
|
// RUN: %clang_cc1 -triple armv7l-unknown-linux-gnueabihf -emit-llvm -O1 -disable-llvm-optzns -std=c++03 %s -o - | FileCheck %s
|
||||||
|
|
||||||
// This test should not to generate llvm.lifetime.start/llvm.lifetime.end for
|
// This test should not to generate llvm.lifetime.start/llvm.lifetime.end for
|
||||||
// f function because all temporary objects in this function are used for the
|
// f function because all temporary objects in this function are used for the
|
||||||
|
|
Loading…
Reference in New Issue