diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2005-11-11 16:47:30 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2005-11-11 16:47:30 +0000 |
commit | 01aa56397d103e28aa577f3994f53f2f6aa82fc1 (patch) | |
tree | a1441fff56c55f2b86f820d57e67f95ddbf16462 /llvm/lib/CodeGen/IntrinsicLowering.cpp | |
parent | bd0127e4675e65de7154fdc6987ea0534db1e1cf (diff) | |
download | bcm5719-llvm-01aa56397d103e28aa577f3994f53f2f6aa82fc1.tar.gz bcm5719-llvm-01aa56397d103e28aa577f3994f53f2f6aa82fc1.zip |
continued readcyclecounter support
llvm-svn: 24300
Diffstat (limited to 'llvm/lib/CodeGen/IntrinsicLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/IntrinsicLowering.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/IntrinsicLowering.cpp b/llvm/lib/CodeGen/IntrinsicLowering.cpp index a570ef54c45..256f0ffa567 100644 --- a/llvm/lib/CodeGen/IntrinsicLowering.cpp +++ b/llvm/lib/CodeGen/IntrinsicLowering.cpp @@ -262,6 +262,12 @@ void DefaultIntrinsicLowering::LowerIntrinsicCall(CallInst *CI) { case Intrinsic::pcmarker: break; // Simply strip out pcmarker on unsupported architectures + case Intrinsic::readcyclecounter: { + std::cerr << "WARNING: this target does not support the llvm.readcyclecounter" + << " intrinsic. It is being lowered to a constant 0\n"; + CI->replaceAllUsesWith(ConstantUInt::get(Type::ULongTy, 0)); + break; + } case Intrinsic::dbg_stoppoint: case Intrinsic::dbg_region_start: |