Skip to content

Commit e1a1617

Browse files
committed
[Driver] Fix incorrect merge
Signed-off-by: Haonan Yang <[email protected]>
1 parent c5db621 commit e1a1617

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

clang/lib/Driver/ToolChains/Linux.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -317,13 +317,9 @@ Linux::Linux(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
317317
// libc++.so in D.Dir+"/../lib/". Detect this path.
318318
// TODO Remove once LLVM_ENABLE_PROJECTS=libcxx is unsupported.
319319
if (StringRef(D.Dir).startswith(SysRoot) &&
320-
<<<<<<< HEAD
321-
D.getVFS().exists(D.Dir + "/../lib/libc++.so"))
322-
=======
323320
(D.getVFS().exists(D.Dir + "/../lib/libc++.so") ||
324321
Args.hasArg(options::OPT_fsycl) ||
325322
D.getVFS().exists(D.Dir + "/../lib/libsycl.so")))
326-
>>>>>>> 4ce19d6945fae4945a75b28ba092a14c72a4a47c
327323
addPathIfExists(D, D.Dir + "/../lib", Paths);
328324

329325
addPathIfExists(D, concat(SysRoot, "/lib"), Paths);

0 commit comments

Comments
 (0)