Use (actions) instead of option properties, support external options.
[oota-llvm.git] / utils / TableGen / DAGISelEmitter.cpp
index 3674a136c9cef5251aa55b6f79b3544482b19b88..a6e3730ab12fd1b88359c852e1ee81dbe3a49674 100644 (file)
@@ -1097,7 +1097,7 @@ public:
 
       // Generate MemOperandSDNodes nodes for each memory accesses covered by 
       // this pattern.
-      if (II.isSimpleLoad | II.mayLoad | II.mayStore) {
+      if (II.mayLoad | II.mayStore) {
         std::vector<std::string>::const_iterator mi, mie;
         for (mi = LSI.begin(), mie = LSI.end(); mi != mie; ++mi) {
           std::string LSIName = "LSI_" + *mi;