diff options
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-member.cpp | 2 | ||||
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-method-spec.cpp | 2 | ||||
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-method.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-member.cpp b/clang/test/CodeGenCXX/debug-info-member.cpp index 5052a6cafb7..8c2e3ebded4 100644 --- a/clang/test/CodeGenCXX/debug-info-member.cpp +++ b/clang/test/CodeGenCXX/debug-info-member.cpp @@ -1,4 +1,4 @@ -// RUN: %clang -fverbose-asm -cc1 -g -S %s -o - | grep DW_ACCESS_public +// RUN: %clang -fverbose-asm -g -S %s -o - | grep DW_ACCESS_public class A { public: int x; diff --git a/clang/test/CodeGenCXX/debug-info-method-spec.cpp b/clang/test/CodeGenCXX/debug-info-method-spec.cpp index 31f66633dc4..2068c5ce4fa 100644 --- a/clang/test/CodeGenCXX/debug-info-method-spec.cpp +++ b/clang/test/CodeGenCXX/debug-info-method-spec.cpp @@ -1,4 +1,4 @@ -// RUN: %clang -fverbose-asm -cc1 -g -S %s -o - | grep DW_AT_specification +// RUN: %clang -fverbose-asm -g -S %s -o - | grep DW_AT_specification // Radar 9254491 class A { public: diff --git a/clang/test/CodeGenCXX/debug-info-method.cpp b/clang/test/CodeGenCXX/debug-info-method.cpp index 59357278515..cb022bc52cd 100644 --- a/clang/test/CodeGenCXX/debug-info-method.cpp +++ b/clang/test/CodeGenCXX/debug-info-method.cpp @@ -1,4 +1,4 @@ -// RUN: %clang -fverbose-asm -cc1 -g -S %s -o - | grep DW_ACCESS_protected +// RUN: %clang -fverbose-asm -g -S %s -o - | grep DW_ACCESS_protected class A { protected: int foo(); |