This adds the flag to more tests that were not caught by the mass-migration in 532dc62b907554b3f07f17205674aa71e76fc863.
9 lines
195 B
C++
9 lines
195 B
C++
// RUN: %clang_cc1 -no-opaque-pointers -std=c++11 -triple x86_64-unknown-linux-gnu -emit-llvm %s -o - | FileCheck %s
|
|
|
|
void foo(int a) {
|
|
int &tmp0 = a;
|
|
int &&tmp1 = 1;
|
|
tmp1 = a;
|
|
return;
|
|
}
|