pass machinemoduleinfo down into getSymbolForDwarfGlobalReference,
[llvm/avr.git] / test / CodeGen / Thumb2 / thumb2-mla.ll
blobbe66425d7e66c313216a56c983889c507bee3e1e
1 ; RUN: llc < %s -march=thumb -mattr=+thumb2 | grep {mla\\W*r\[0-9\],\\W*r\[0-9\],\\W*r\[0-9\],\\W*r\[0-9\]} | count 2
3 define i32 @f1(i32 %a, i32 %b, i32 %c) {
4     %tmp1 = mul i32 %a, %b
5     %tmp2 = add i32 %c, %tmp1
6     ret i32 %tmp2
9 define i32 @f2(i32 %a, i32 %b, i32 %c) {
10     %tmp1 = mul i32 %a, %b
11     %tmp2 = add i32 %tmp1, %c
12     ret i32 %tmp2