diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2005-03-28 20:05:49 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2005-03-28 20:05:49 +0000 |
commit | b4427911247a39b178a5a8b27b54a2220a3ab48d (patch) | |
tree | 3e65657a4a00f41f826e96874811817d02bf2939 /llvm/lib/CodeGen/IntrinsicLowering.cpp | |
parent | 5bdfc63516e7c82f8b5eee851c05dd2264aa3076 (diff) | |
download | bcm5719-llvm-b4427911247a39b178a5a8b27b54a2220a3ab48d.tar.gz bcm5719-llvm-b4427911247a39b178a5a8b27b54a2220a3ab48d.zip |
First step in adding pcmarker intrinsic. Second step (soon) is adding backend support.
llvm-svn: 20900
Diffstat (limited to 'llvm/lib/CodeGen/IntrinsicLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/IntrinsicLowering.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/IntrinsicLowering.cpp b/llvm/lib/CodeGen/IntrinsicLowering.cpp index 3633f966f90..b665557d2bb 100644 --- a/llvm/lib/CodeGen/IntrinsicLowering.cpp +++ b/llvm/lib/CodeGen/IntrinsicLowering.cpp @@ -172,6 +172,9 @@ void DefaultIntrinsicLowering::LowerIntrinsicCall(CallInst *CI) { case Intrinsic::prefetch: break; // Simply strip out prefetches on unsupported architectures + case Intrinsic::pcmarker: + break; // Simply strip out pcmarker on unsupported architectures + case Intrinsic::dbg_stoppoint: case Intrinsic::dbg_region_start: case Intrinsic::dbg_region_end: |