diff options
author | Tanya Lattner <tonic@nondot.org> | 2007-06-15 22:26:58 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2007-06-15 22:26:58 +0000 |
commit | 24e5aada7d112447c41c12008f7daf1fc15a24bc (patch) | |
tree | 588eab843c5914aa77f31835bbc62603d302ea92 /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | a2acf840a70c273a03ffb5752221350b4949fc0e (diff) |
Codegen support (stripped out) for the annotate attribute.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37608 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index c9ed8b6247..d1a5b88ed2 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -2774,6 +2774,10 @@ SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) { case Intrinsic::prefetch: // FIXME: Currently discarding prefetches. return 0; + + case Intrinsic::var_annotation: + // Discard annotate attributes + return 0; } } |