[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / NewGVN / bitcast-of-call.ll
blob25866be08bd3c774d8acd698d8f0c8268f95531b
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -passes=newgvn -S | FileCheck %s
3 ; PR2213
5 define ptr @f(ptr %x) {
6 ; CHECK-LABEL: @f(
7 ; CHECK-NEXT:  entry:
8 ; CHECK-NEXT:    [[TMP:%.*]] = call ptr @m(i32 12)
9 ; CHECK-NEXT:    ret ptr [[TMP]]
11 entry:
12   %tmp = call ptr @m( i32 12 )            ; <ptr> [#uses=2]
13   ret ptr %tmp
16 declare ptr @m(i32)