Skip to content

Commit b2ada86

Browse files
committed
Fix file first line comment. Fix nits.
1 parent 3013bc0 commit b2ada86

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

clang/lib/Driver/ToolChains/UEFI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- UEFI.h - UEFI ToolChain Implementations ----------*- C++ -*-===//
1+
//===--- UEFI.cpp - UEFI ToolChain Implementations -----------------------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang/lib/Driver/ToolChains/UEFI.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
#include "clang/Driver/Tool.h"
1313
#include "clang/Driver/ToolChain.h"
1414

15-
namespace clang {
16-
namespace driver {
15+
namespace clang::driver {
1716
namespace tools {
1817
namespace uefi {
1918
class LLVM_LIBRARY_VISIBILITY Linker : public Tool {
@@ -55,7 +54,6 @@ class LLVM_LIBRARY_VISIBILITY UEFI : public ToolChain {
5554
};
5655

5756
} // namespace toolchains
58-
} // namespace driver
59-
} // namespace clang
57+
} // namespace clang::driver
6058

6159
#endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_UEFI_H

clang/test/Driver/uefi-data-layout.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
// RUN: %clang -target x86_64-unknown-uefi -S -emit-llvm -o - %s | \
22
// RUN: FileCheck --check-prefix=X86_64_UEFI %s
33
// X86_64_UEFI: target datalayout = "e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64-S128"
4-

0 commit comments

Comments
 (0)