diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-12-02 00:23:41 -0500 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-12-02 00:23:41 -0500 |
commit | 8d8f1757c190a91e1a45759e88e1395127585abf (patch) | |
tree | 6f70281e2491d505fb59388951b2a20830412986 /lib/Target/CppBackend/CPPBackend.cpp | |
parent | 606ecf5dea77a80cb4facbaa8483454d966657fd (diff) |
missing store breaks
Diffstat (limited to 'lib/Target/CppBackend/CPPBackend.cpp')
-rw-r--r-- | lib/Target/CppBackend/CPPBackend.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/CppBackend/CPPBackend.cpp b/lib/Target/CppBackend/CPPBackend.cpp index 137cd904cd..710ab27df2 100644 --- a/lib/Target/CppBackend/CPPBackend.cpp +++ b/lib/Target/CppBackend/CPPBackend.cpp @@ -1014,6 +1014,7 @@ std::string CppWriter::getLoad(std::string Assign, const Value *P, const Type *T "(HEAP8[" + PS + "+1]<<1)+" + sep + "(HEAP8[" + PS + "+2]<<2)+" + sep + "(HEAP8[" + PS + "+3]<<3)"; + break; } default: assert(0 && "bad 4i store"); } @@ -1029,6 +1030,7 @@ std::string CppWriter::getLoad(std::string Assign, const Value *P, const Type *T "HEAP8[tempDoublePtr+1]=HEAP8[" + PS + "+1]" + sep + "HEAP8[tempDoublePtr+2]=HEAP8[" + PS + "+2]=" + sep + "HEAP8[tempDoublePtr+3]=HEAP8[" + PS + "+3]"; + break; } default: assert(0 && "bad 4f store"); } |