r222179 - CodeGen: make a check stricter
Saleem Abdulrasool
compnerd at compnerd.org
Mon Nov 17 14:11:07 PST 2014
Author: compnerd
Date: Mon Nov 17 16:11:07 2014
New Revision: 222179
URL: http://llvm.org/viewvc/llvm-project?rev=222179&view=rev
Log:
CodeGen: make a check stricter
When targeting Windows itanium (a MSVC environment), use itanium style
exceptions rather than SEH. Existing test cases already test this code path.
Applying this change ensures that tests wont break due to a parallel change in
LLVM (to correctly report isMSVCEnvironment).
Modified:
cfe/trunk/lib/CodeGen/CGException.cpp
Modified: cfe/trunk/lib/CodeGen/CGException.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGException.cpp?rev=222179&r1=222178&r2=222179&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGException.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGException.cpp Mon Nov 17 16:11:07 2014
@@ -425,7 +425,7 @@ llvm::Value *CodeGenFunction::getSelecto
void CodeGenFunction::EmitCXXThrowExpr(const CXXThrowExpr *E,
bool KeepInsertionPoint) {
- if (CGM.getTarget().getTriple().isWindowsMSVCEnvironment()) {
+ if (CGM.getTarget().getTriple().isKnownWindowsMSVCEnvironment()) {
ErrorUnsupported(E, "throw expression");
return;
}
@@ -597,7 +597,7 @@ void CodeGenFunction::EmitEndEHSpec(cons
}
void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) {
- if (CGM.getTarget().getTriple().isWindowsMSVCEnvironment()) {
+ if (CGM.getTarget().getTriple().isKnownWindowsMSVCEnvironment()) {
ErrorUnsupported(&S, "try statement");
return;
}
More information about the cfe-commits
mailing list