Create nodes for inline asm so that we don't crash looking for the node later.
authorNick Lewycky <nicholas@mxc.ca>
Thu, 22 Nov 2007 03:07:37 +0000 (03:07 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Thu, 22 Nov 2007 03:07:37 +0000 (03:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44267 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/IPA/Andersens.cpp
test/Analysis/Andersens/2007-11-19-InlineAsm.ll [new file with mode: 0644]

index 08b9dc3de22c75ab74dafc6aa877d38df2981eb4..da4fa82f06a2d0437c364214603a9b3deb8b10a6 100644 (file)
@@ -668,6 +668,14 @@ void Andersens::IdentifyObjects(Module &M) {
         if (AllocationInst *AI = dyn_cast<AllocationInst>(&*II))
           ObjectNodes[AI] = NumObjects++;
       }
+
+      // Calls to inline asm need to be added as well because the callee isn't
+      // referenced anywhere else.
+      if (CallInst *CI = dyn_cast<CallInst>(&*II)) {
+        Value *Callee = CI->getCalledValue();
+        if (isa<InlineAsm>(Callee))
+          ValueNodes[Callee] = NumObjects++;
+      }
     }
   }
 
diff --git a/test/Analysis/Andersens/2007-11-19-InlineAsm.ll b/test/Analysis/Andersens/2007-11-19-InlineAsm.ll
new file mode 100644 (file)
index 0000000..c1ab6c7
--- /dev/null
@@ -0,0 +1,8 @@
+; RUN: llvm-as < %s | opt -anders-aa -disable-output
+
+define void @x(i16 %Y) {
+entry:
+  %tmp = call i16 asm "bswap $0", "=r,r"(i16 %Y)
+  ret void
+}
+