Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / utils / update_cc_test_checks / Inputs / resolve-tmp-conflict.cpp
blobd82490ea3c886a1cc06942d155b16d4f1b5040a1
1 // RUN: %clang_cc1 -std=c++11 -triple x86_64-unknown-linux-gnu -emit-llvm %s -o - | FileCheck %s
3 void foo(int a) {
4 int &tmp0 = a;
5 int &&tmp1 = 1;
6 tmp1 = a;
7 return;