diff options
author | Arnold Schwaighofer <aschwaighofer@apple.com> | 2017-11-07 16:40:51 +0000 |
---|---|---|
committer | Arnold Schwaighofer <aschwaighofer@apple.com> | 2017-11-07 16:40:51 +0000 |
commit | 612d693c64ce3e53854f0ecd92210515c5036977 (patch) | |
tree | 15e04b3aaae903d23d109591825da9f3827667d8 | |
parent | 41bf2407268743b53f8b8e31ab1999f4add4c578 (diff) | |
download | bcm5719-llvm-612d693c64ce3e53854f0ecd92210515c5036977.tar.gz bcm5719-llvm-612d693c64ce3e53854f0ecd92210515c5036977.zip |
SystemZ Swift TargetInfo: swifterror support in the backend is broken
Return false for swifterror support until the backend is fixed.
llvm-svn: 317589
-rw-r--r-- | clang/lib/CodeGen/TargetInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/TargetInfo.cpp b/clang/lib/CodeGen/TargetInfo.cpp index b1773b70907..4b8006428f8 100644 --- a/clang/lib/CodeGen/TargetInfo.cpp +++ b/clang/lib/CodeGen/TargetInfo.cpp @@ -6319,7 +6319,7 @@ public: return occupiesMoreThan(CGT, scalars, /*total*/ 4); } bool isSwiftErrorInRegister() const override { - return true; + return false; } }; |