aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/AST/ByteCode/Interp.cpp
diff options
context:
space:
mode:
authorRahul Joshi <rjoshi@nvidia.com>2025-06-23 13:10:42 -0700
committerGitHub <noreply@github.com>2025-06-23 13:10:42 -0700
commit6cf656eca717890a43975c026d0ae34c16c6c455 (patch)
tree320ce96d639dc05c00257ad9fc788e1f84f86b6f /clang/lib/AST/ByteCode/Interp.cpp
parent66214410c4059be3b60f287d80e2ffc77d2c9ab4 (diff)
downloadllvm-6cf656eca717890a43975c026d0ae34c16c6c455.zip
llvm-6cf656eca717890a43975c026d0ae34c16c6c455.tar.gz
llvm-6cf656eca717890a43975c026d0ae34c16c6c455.tar.bz2
[NFC][Clang][AST] Drop `llvm::` in front of `ArrayRef`/`MutableArrayRef` (#145207)
Diffstat (limited to 'clang/lib/AST/ByteCode/Interp.cpp')
-rw-r--r--clang/lib/AST/ByteCode/Interp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/ByteCode/Interp.cpp b/clang/lib/AST/ByteCode/Interp.cpp
index 1e2032f..51cf0c5 100644
--- a/clang/lib/AST/ByteCode/Interp.cpp
+++ b/clang/lib/AST/ByteCode/Interp.cpp
@@ -1108,7 +1108,7 @@ bool CheckDummy(InterpState &S, CodePtr OpPC, const Pointer &Ptr,
bool CheckNonNullArgs(InterpState &S, CodePtr OpPC, const Function *F,
const CallExpr *CE, unsigned ArgSize) {
- auto Args = llvm::ArrayRef(CE->getArgs(), CE->getNumArgs());
+ auto Args = ArrayRef(CE->getArgs(), CE->getNumArgs());
auto NonNullArgs = collectNonNullArgs(F->getDecl(), Args);
unsigned Offset = 0;
unsigned Index = 0;