Skip to content

Commit

Permalink
Fix a bug in merging llvm-6.0 into master branch.
Browse files Browse the repository at this point in the history
These two lines should have been deleted since we already have a
special math op OPCODE.

Change-Id: I24d50fc680b0596100a29e368dadb61717845313
  • Loading branch information
yaoyuannnn committed Jan 9, 2020
1 parent 989084a commit f45f712
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions full-trace/full_trace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -994,10 +994,6 @@ void Tracer::handleCallInstruction(Instruction* inst, InstEnv* env) {
opcode = HOST_LOAD;
else if (fun->getName() == "hostStore")
opcode = HOST_STORE;
else if (fun->getName() == "sin")
opcode = SINE;
else if (fun->getName() == "cos")
opcode = COSINE;
else if (fun->isIntrinsic())
opcode = INTRINSIC;
else
Expand Down

0 comments on commit f45f712

Please sign in to comment.