[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / CodeGenCXX / powerpc-byval.cpp
blobd49cbfcb0fbdd4ec449de511037a5d980973b88e
1 // RUN: %clang_cc1 -emit-llvm %s -o - -triple=powerpc-unknown-linux | FileCheck %s
3 struct S {
4 S();
5 ~S();
6 };
8 void byval(S one, S two) {
9 one = two;
12 // CHECK: define{{.*}} void @_Z5byval1SS_(%struct.S* noundef %one, %struct.S* noundef %two)